Calling PHP Parent Constructors With Old/New Syntax
问题 Given the class Foo with an old-style constructor class Foo { public function Foo() { //does constructing stuff } } Is there any functional difference between calling the parent constructor with a new style constructor or the old style constructor? class Bar extends Foo { public function Bar() { //does it matter? //parent::__construct(); //parent::Foo(); } } Put another way, is there anything special about the static call parent::__construct() when it's made from a constructor, or is it just