Vidyalelo
PHP · Q14

Object Oriented Concept

Programming · PHP · question 14

Q14

Prior to which version of PHP did constructors took the name of the enclosing class.

A.
PHP 4
B.
PHP 5
Answer
C.
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();