Junior PHP Developer Question:
Tell me are Parent constructors called implicitly inside a class constructor?

Answer:
No, a parent constructor have to be called explicitly as follows:
parent::constructor($value)
parent::constructor($value)
Previous Question | Next Question |
Tell me is it possible to protect special characters in a query string? | Tell me is it possible to remove the HTML tags from data? |