abstract class in php
by Prakash[ Edit ] 2013-03-02 18:53:05
An abstract class cannot be instantiated. Instead it defines (and, optionally, partially implements)
the interface for any class that might extend it.
You define an abstract class with the abstract keyword.