Class Abstraction.
PHP 5 introduces
abstract classes and methods.
Classes defined as
abstract may not be instantiated, and any
class that contains at least one
abstract method must also be
abstract. Methods defined as
abstract simply declare the method's signature - they cannot define the implementation.
read more >>