Q14
Prior to which version of PHP did constructors took the name of the enclosing class.
A.
PHP 4
B.
PHP 5
AnswerC.
PHP 5.3
D.
PHP 5.4
Answer: Option B
Solution
Answer: Option B
Solution:
The new unified constructors use the name __construct(). Using the old syntax, a call to a parent constructor would tie you to that particular class: parent::ShopProduct();