downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<Scope Resolution Operator (::)Serializing objects - objects in sessions>
Last updated: Thu, 26 Jun 2008

parent

You may find yourself writing code that refers to variables and functions in base classes. This is particularly true if your derived class is a refinement or specialisation of code in your base class.

Instead of using the literal name of the base class in your code, you should be using the special name parent, which refers to the name of your base class as given in the extends declaration of your class. By doing this, you avoid using the name of your base class in more than one place. Should your inheritance tree change during implementation, the change is easily made by simply changing the extends declaration of your class.

<?php
class A {
   function
example() {
       echo
"I am A::example() and provide basic functionality.<br />\n";
   }
}

class
B extends A {
   function
example() {
       echo
"I am B::example() and provide additional functionality.<br />\n";
      
parent::example();
   }
}

$b = new B;

// This will call B::example(), which will in turn call A::example().
$b->example();
?>


add a noteadd a note User Contributed Notes
parent
There are no user contributed notes for this page.




<Scope Resolution Operator (::)Serializing objects - objects in sessions>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs