Changes in PHP 5 / ZEND ENGINE II
By PHP.NET MARCH 22, 2004 Body, Center, TD, P, LI {Font-Family: Verdana, Arial, Helvetica, Sans-Serif; Font-size: 11px; Color: # 333333} ul {margin-left: 20 H2 {Font-Family: Arial, Helvetica, Sans-Serif; Font-size: 16px; Color: # 336699} h3 {font-family: Arial, Helvetica, Sans-Serif; Font-size: 14px; Color: # 333333} New Object ModelPrivate and Protected MembersPrivate and Protected MethodsAbstract Classes and MethodsInterfacesClass Type HintsfinalObject CloningUnified ConstructorsDestructorsConstantsExceptionsDereferencing Objects Returned from FunctionsStatic Member Variables of Static Classes Can Now be InitializedStatic MethodsinstanceofStatic Function VariablesParameters that are Passed by Reference to a Function May Now Have Default Values__autoload () Overloadable Method Calls and Property AccessesIterationNew __METHOD__ ConstantNew __toString () MethodReflection APINew Memory Manager New Object Model PHP's handling of objects has been completely rewritten, allowing for better performance and more f eatures. In previous versions of PHP, objects were handled like primitive types (for instance integers and strings). The drawback of this method was that semantically the whole object was copied when a variable was assigned, or pass as a parameter to a method. In The New Approach, Objects Are Reference by Handle, And Not By Value (One Can Think of A Handle As An Object's Identifier). Many PHP Programmers Aren '
t even aware of the copying quirks of the old object model and, therefore, the majority of PHP applications will work out of the box, or with very few modifications. Private and Protected Members PHP 5 introduces private and protected member variables, they allow you to define the visibility of class properties. Example Protected member variables can be accessed in classes extending the class they are declared in, whereas private member variables can only be accessed by the class they belong to. php class MyClass {private $ Hello = "Hello, World! / N"; protected $ bar = "Hello, foo! / N"; protected $ foo = "Hello, bar! / N"; function printhello () {print "Myclass :: PrintHello ()". $ this-> Hello; Print "Myclass :: Printhello ()". $ this-> bar; print "myclass :: printhello ()". $ this-> foo;}} class myclass2 extends myclass {protected $ foo; function Printhello () {Myclass :: Printhello (); / * Should Print * / Print "Myclass2 :: PrintHello ()". $ this-> hello; / * shouldn't print out anything * / print "Myclass2 :: PrintHello ()". $ this-> bar; / * Shouldn't Print (Not DECLARED) * / print "Myclass2 :: Print Hello ()". $ this-> foo; / * Should Print * /}} $ obj = new myclass (); print $ obj-> hello; / * shouth't print Out Anything * / print $ obj-> bar; / * shouldn't print out anything * / print $ obj-> foo; / * shouldn't print out anything * / $ obj-> printhello (); / * Should Print * / $ obj = new myclass2 (); print $ obj-> hello; / * shopn't print out anything * / print $ obj-> bar; / * shouth '
t print out anything * / print $ obj-> Foo; / * Should not print out anything * / $ obj-> printHello ();?> Private and Protected MethodsWith PHP 5, private and protected methods are also introduced Example <. ? php class Foo {private function aPrivateMethod () {echo "Foo :: aPrivateMethod () called./n";} protected function aProtectedMethod () {echo "Foo :: aProtectedMethod () called./n"; $ this-> APRIVATEMETHOD ();}} Class Bar Extends foo {public function apublicMethod () {echo "bar :: apublicMethod () Called./n"; $ this-> AprotacectedMethod ();}} $ o = new bar; $ o- > aPublicMethod ();?..> Old code that has no user-defined classes or functions named "public", "protected" or "private" should run without modifications abstract classes and Methods PHP 5 also introduces abstract classes and methods An abstract Method Only Declares The Method's Signature and Does Not Provide An Implementation. a Class That Contains Abstract Methods Needs To Be Declared Abstr . Act Example
} Class MyException implements Throwable {public function getMessage () {// ...}}?> Old code that has no user-defined classes or functions named 'interface' or 'implements' should run without modifications. Class Type Hints While remaining loosely typed PHP 5 introduces the ability to use class type hints to declare the expected class of objects that are passed as parameters to a method Example
? Php final class Foo {// class definition} // the next line is impossible // class Bork extends Foo {}?> Properties can not be final. Old code that has no user-defined classes or functions named 'final' should run without modifications. Object Cloning PHP 4 offered no way a user could decide what copy constructor to run when an object is duplicated. During duplication, PHP 4 did a bit for bit copy making an identical replica of all the object's properties. Creating a copy of an object with fully replicated properties is not always the wanted behavior. A good example of the need for copy constructors, is if you have an object which represents a GTK window and the object holds the resource of this GTK window, when you create a duplicate you might want to create a new window with the same properties and have the new object hold the resource of the new window. Another example is if your object holds a reference to another object which it uses and when you replicate the parent object y ou want to create a new instance of this other object so that the replica has its own separate copy An object copy is created by calling the object's __clone () method: - __ clone ();.
s properties. If a __clone () method is defined, then it will be responsible to set the necessary properties in the created object. For convenience, the engine will supply a function that imports all of the properties from the source object, so that they can start with a by-value replica of the source object, and only override properties that need to be changed Example.
Unified Constructors PHP 5 allows developers to declare constructor methods for classes. Classes which have a constructor method call this method on each newly-created object, so it is suitable for any initialization that the object may need before it is used. With PHP 4, constructor methods were class methods that had the same name as the class itself. Since it is very common to call parent constructors from derived classes, the way PHP 4 worked made it a bit cumbersome to move classes around in a large class hierarchy. If a class is moved to reside under a different parent, the constructor name of that parent changes as well, and the code in the derived class that calls the parent constructor has to be modified. PHP 5 introduces a standard way of declaring constructor methods by calling them By the name __construct (). EXAMPLE php class baseclass {function __construct () {print "in baseclass constructor / n";}} class subclass extends baseclass {function __construct () {Parent :: __ construct (); Print "in subclass constructor / n";}} $ obj = new baseclass (); $ obj = new subclass ();?>>
For backwards compatibility, if PHP 5 can not find a __construct () function for a given class, it will search for the old-style constructor function, by the name of the class. Effectively, it means that the only case that would have compatibility issues is if the class had a method named __construct () which was used for different semantics. destructors Having the ability to define destructors for objects can be very useful. destructors can log messages for debugging, close database connections and do other clean-up work. No mechanism for object destructors existed in PHP 4, although PHP had already support for registering functions which should be run on request shutdown PHP 5 introduces a destructor concept similar to that of other object-oriented languages, such as Java:. When the last reference TO An Object Is Destroyed The Object's Destructor, Which is a class method named __destruct () That Receives No parameters, is Called Before The Object Is Freed from Memory. EXAMPLE PHP Class MyDestructableclass () {print "in constructor / n"; $ this-> name = "mydestructure __destructure";} function __destruct () {Print "destroying". $ This-> name. "/ N";}} obj = new MyDestructableClass ();?> Like constructors, parent destructors will not be called implicitly by the engine in order to run a parent destructor, one would have to explicitly call parent :: __ destruct () in the destructor body Constants PHP.. 5 Introduces Per-Class Constants: Php class foo {constant = "constant";} echo "foo :: constant =". Foo :: constant. "/ N";?>>
Old code that has no user-defined classes or functions named 'const' will run without modifications. Exceptions PHP 4 had no exception handling. PHP 5 introduces a exception model similar to that of other programming languages. Note that there is support for "catch all "but not for the" finally "clause. Exceptions can be rethrown in catch blocks. Also it is possible to have multiple catch blocks. in that case the caught exception is compared with the classtype of each catch block from top to bottom and the first block that has an 'instanceof' match gets executed. When the catch block finishes, execution continues at the end of the last catch block. If no catch block has an 'instanceof' match then the next try / catch block is searched until no more try / catch blocks are available. In that case the exception is an uncaught exception and the program terminates with showing the exception. Example php class MyException {function __construct ($ exception) {$ this-> exception = $ exce ption;} function Display () {print "MyException: $ this-> exception / n";}} class MyExceptionFoo extends MyException {function __construct ($ exception) {$ this-> exception = $ exception;} function Display () { Print "MyException: $ this-> Exception / N";}}}}} Try {throw new myexceptionfoo ('Hello');} catch (myException $ exception) {$ exception-> display ();} catch (Exception $ exception) { Echo $ Exception;
t inherit from Exception it is best to do so. This is because the internal Exception class can gather a lot of information otherwise not available. The PHP code emulation code would look something like shown below. The comments show the meaning of each property and hence their getter methods. As the code shows it is possible to read any available information by using the getter methods. But since some of the methods are used internally they are marked final. All in all the class is very restrictive because it must be ensured that anything used internally always works as expected Example
} Function _toString () {return $ this-> string;} static private function StringFormat (Exception $ exception) {// ... a function not available in PHP scripts // that returns all relevant information as a string} static private function TraceFormat (Exception $ exception) {// ... a function not available in PHP scripts // that returns the backtrace as a string}}?> If you derive your exception classes from this Exception base class your exceptions will be nicely shown in the built-in handler for uncaught exceptions. Old code that has no user-defined classes or functions 'catch', 'throw' and 'try' will run without modifications. dereferencing Objects Returned from Functions in PHP 4 it was not possible to dereference objects returned by functions and make further method calls on those objects With PHP 5, the following is now possible:
keyword to declare a method static, thus callable from outside the object context Example.
=> 2, "c" => 3); function __get ($ nm) {print "getting [$ nm] / n"; if (isset ($ this-> x [$ nm]) {$ r = $ This-> x [$ nm]; print "Returning: $ r / n"; return $ r;} else {print "nothing! / n";}}}}} function __set ($ nm, $ val) {print "setting [ $ nm] to $ val / n "; if ($ this-> x [$ nm])) {$ this-> x [$ nm] = $ val; print" ok! / n ";} else { Print "not ok! / n";}}} $ foo = new setter (); $ foo-> n = 1; $ foo-> a = 100; $ foo-> a ; $ foo-> z ; var_dump $ foo);?> eXample: __call () php class caller {var $ x = array (1, 2, 3); function __call ($ m, $ a) {print "Method $ M CALLED: / N" Var_dump ($ a); return $ this-> x;}} $ foo = new caller (); $ a = $ foo-> test (1, "2", 3.4, true); var_dump ($ A); ?> Orthoferloaded Way When Used with foreach. The default behavior is to ipample over all proties. EXAMPLE PHP Class foo { VAR $ x = 1; var $ y = 2;} $ obj = new foo; foreach ($ OBJ AS $ PRP_NAME => $ Prop_Value) {// @@@@@@>>
Each class whose instances can be iterated with foreach should implement the empty interface Traversable. Hence any object that says it implements Traversable can be used with foreach. The interfaces IteratorAggregate and Iterator allows you to specify how class objects are iterated in PHP code. The first of them simply has a method getIterator () which must return an array or an object that either implements the interface Iterator or is instantiated from an internal class that can be iterated Example
The matching for directive is very interesting here since it shows the use of all abstract methods declared in the interfaces Iterator and IteratorAggregate respectively. New __METHOD__ Constant The new __METHOD__ pseudo constant shows the current class and method when used inside a method and the function when used Outside of a class. EXAMPLE PHP Class Foo {function show () {echo __file__. '('. __line__. ')'. __Method__;}} function test () {echo __file__. '('. __line__. ') '__METHOD__;.?.}> New __toString () Method The new __toString () magic method allows you to overload the object to string conversion Example