PHP·98 questions

How does inheritance work?

Answer
class Child extends Parent.
Inherits properties and methods.
parent::method() — call to parent.
Overriding methods.
PHP supports only single inheritance.
Was this answer helpful?

More questions in this topic

Related questions from other topics