Can I call the constructor of a child class in the constructor of the parent class to compensate for the lack of constuct chaining in PHP classes???? If so, how? (same as you would with a method or..)
nevermind, I tried it and it works as I expected it to...I think
A parent class can't call a child constructor, since it won't know what the child class is. You can call the parent constructor from the child, if that's what you mean.
OK, I mixed those up, but it does work! 😃