PHP: Late Static Bindings
New to PHP 5.3.0 will be late static bindings. Currently you can use the self keyword in PHP to access static methods of the current class, the new static keyword allows you to access static methods through the inheritance tree. This example from the PHP website explains best...
Code
Output
AB
There are more examples in the PHP manual about Late Static Bindings.
Comments
No comments have been made, why not be the first?