PHP
  Home arrow PHP arrow Page 2 - Using Subclasses and Accessors with Me...
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Mobile Linux 
App Generation ROI 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Using Subclasses and Accessors with Member Visibility to Protect PHP 5 Class Data
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 4
    2008-06-04

    Table of Contents:
  • Using Subclasses and Accessors with Member Visibility to Protect PHP 5 Class Data
  • Accessing private properties globally
  • Accessing private properties from a subclass
  • Retrieving the values of private properties using accessors

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Using Subclasses and Accessors with Member Visibility to Protect PHP 5 Class Data - Accessing private properties globally


    (Page 2 of 4 )

    Before I start showing you how to access some private properties directly from a child class, first, let me reintroduce a practical example that I developed in the previous tutorial. It illustrated how the PHP interpreter behaves when it accesses a couple of private class properties globally.

    As you'll possibly recall, the properties in question were declared within a rudimentary data saving class, whose signature looked like this:


    // define 'DataSaver' class (properties are defined private)


    class DataSaver{

    private $filePath;

    private $data;

    public function __construct($data,$filePath){

    if(!$data||strlen($data)>1024){

    throw new Exception('Invalid data for being saved to target file.');

    }

    if(!file_exists($filePath)){

    throw new Exception('Invalid target file.');

    }

    $this->data=$data;

    $this->filePath=$filePath;

    }

    // save data to target file

    public function save(){

    if(!$fp=fopen($this->filePath,'w')){

    throw new Exception('Error opening target file.');

    }

    if(!fwrite($fp,$this->data)){

    throw new Exception('Error writing data to target file.');

    }

    fclose($fp);

    }

    // get target file via an accessor

    public function getFilePath(){

    return $this->filePath;

    }

    // get data via an accessor

    public function getData(){

    return $this->data;

    }

    }


    Since the above "DataSaver" class was introduced in the first article of this series, I assume that you're pretty familiar with its functionality, so I won't spend any time here explaining how it works. Instead, you should pay attention to the following script, which shows what happens when the private properties of this class are accessed directly in the global scope.

    Here's the corresponding code sample:


    try{

    // create new instance of 'DataSaver' class

    $dataSaver=new DataSaver('This string of data will be saved to a target file!','datafile.txt');

    // save data to target file

    $dataSaver->save();

    // try to print value of private properties

    echo 'Target file is the following : '.$dataSaver->filePath.'<br />';

    echo 'Data for being saved to target file is the following : '.$dataSaver->data;

     

    /* displays the following

    Cannot access private property DataSaver::$filePath in path/to/file/

    */

    }

    catch(Exception $e){

    echo $e->getMessage();

    exit();

    }


    As you can see, the prior script demonstrates how the PHP interpreter launches a fatal error each time the private properties of the previous "DataSaver" class are retrieved directly from outside of it. Even though this example is pretty basic in its definition, it helps to show how useful the member visibility feature can be when it comes to protecting the data members of a given PHP 5 class.

    So far, so good, right? Now that you hopefully understand how the previous hands-on example works, it's time to learn a few more things about working with private properties of PHP 5 classes.

    So, in accordance with the concepts that I went over in the beginning of this article, in the section to come, I'm going to develop yet another practical example aimed at demonstrating what happens when the private properties of the same "DataSaver" class are accessed from a subclass.

    The topic will be very insightful, trust me. Thus, if you want to learn more about it, please click on the link shown below and keep reading.

    More PHP Articles
    More By Alejandro Gervasio


       · This third chapter of the series demonstrates with some approachable examples how...
     

       

    PHP ARTICLES

    - Using Aliases and the Autoload Function with...
    - Authentication Scripts for a User Management...
    - Utilizing the Use Keyword for Namespaces in ...
    - Building a User Management Application
    - Working With Different Namespaces in PHP 5
    - User Management Explained: Overview
    - Using Namespaces in PHP 5
    - Building a Modular Exception Class in PHP 5
    - Database and Password Security for Web Appli...
    - Handling MySQL Data Set Failures in PHP 5
    - Building Site Registration for Web Applicati...
    - Intercepting Customized Exceptions in PHP 5
    - Sub Classing Exceptions in PHP 5
    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...

     
    Application Delivery: Everything You Wanted to Know, but Didn`t Know You Needed to Ask
    A comprehensive guide to examining the topics of Wide-area Data Services and app....

     
    Best Practices: Safe and Secure Hardware Asset Recovery
    Companies increasingly must meet EPA and local requirements for the disposal of ....

     
    Managing SSL Security in Multi-Server Environments
    Read this white paper to learn how to simplify management of your organization's....

     
    Open Source Security Myths
    Open Source Software (OSS) is computer software whose source code is available t....

     
    Power and Cooling Capacity Management for Data Centers
    This paper describes the principles for achieving power and cooling capacity man....

     




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT