Somehow my mind went far away from the current problem and I made a terrible mistake..
I called a parent constructor inside a method that just initializes classes properties.. Or did I.. The parent constructor’s job was to set the ID value. Well PHP allowed me to do that. But isnt that just wrong? And it looks like I can call classes own constructor in the same way.. Isn’t it that constructors should only be allowed to call when creating instances of a class… And they are only called when creating instances..
<?php
class A {
public function __construct() {
echo "Test<br />";
}
}
class B extends A {
public function test() {
parent::__construct();
}
}
$b = new B();
$b->test();
// OUTPUT:
// Test
// Test
?>
EDIT: So the conclusion is that PHP allows you to call the constructor inside a method but it actually does nothing. And that other “TEST” string comes from the base class’s constructor.
One word describes the situation exactly.
Override
What happens is that when the parent has a method such as a
__constructand the child class does not have that method, when the method is called on the child class it calls the parents method.For example:
if I call the the start method on the Child class its executes the
Parent::Start(), but if Child class has a method calledStart()that one would be called as its Overriding the parents version.Every class has a constructor method, and php executes that to compile the class into an object, now if you have a method called
__construct()in a class, PHP Calls the internal construct which compiles the class, and then calls your override constructor.If you do not have a
__constructmethod in the Child class PHP executes the parent__constructThis is the reason why you get 2 x
Testin your Object initialization.The only time you should be using
parent:__cosntruct()is if your Child class requires a user defined constructor, you explicitly call the parent construct to prepare the parent object.For example:
The reason you should only ever call a parent constructor within a child constructor and not a child method is that constructors should only ever be called once, this way enforces that.