I want to extend a class : class figure extends model_base { ... } , and in the constructor of the class children ( here it is figure )
I want to call its parent’s constructor : in java we do it by writing super(arguments);
So how to call parent’s constructor in PHP ?
All you need is
Please read: Constructors and Destructors