Is it mandatory to call the parent's constructor from the constructor in the child class constructor?
To explain consider the following example:
class Parent{
function __construct(){
//something is done here.
}
}
class Child extends Parent{
function __construct(){
parent::__construct();
//do something here.
}
}
This is quite normal to do it as above. But consider the following constructors of the class Child
:
function __construct(){
//Do something here
parent::__construct();
}
Is the above code correct? Can we do something before you call the parent's constructor? Also if we do not call the parent's constructor in the child's constructor like below is it legal?
class Child extends Parent{
function __construct(){
//do something here.
}
}
I am from JAVA, and the types of constructor I have shown are not possible in Java. But can these be done in PHP?