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?
Is it mandatory?
No
Is the above code correct?
Yes
Can we do something before you call the parent's constructor?
Yes. You can do it in any order you please.
Also if we do not call the parent's constructor in the child's constructor like below is it legal?
Yes. But it's not implicit either. If the child constructor doesn't call the parent constructor then it will never be called because the child constructor overrides the parent. If your child has no constructor then the parent constructor will be used
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With