PHP Coding tips & tricks. Function & error explanation, coding style, how tos etc. Short notes posted directly from developer work environment.
PHP Coding Tips
Thursday, March 28, 2013
Inheritance in PHP
Inheritance (extending classes) is realised in PHP with extends keyword:class albumController extends MfStandardController {Now, object of class albumController will be of type albumController, but also of type MfStandardController, because MfStandardController is a parent of this class
No comments:
Post a Comment