CHAPTER 10

image

Inheritance

Inheritance allows a class to acquire the members of another class. In the example below the class Square inherits from Rectangle, specified by the extends keyword. Rectangle then becomes the parent class of Square, which in turn becomes a child class of Rectangle. In addition to its own members, Square gains all accessible (non-private) members in Rectangle, including any constructor.

// Parent class (base class)class Rectangle{  public $x, $y;  function __construct($a, $b)  {    $this->x = $a;    $this->y = $b;  }} // Child class (derived class)class Square extends Rectangle {}

When creating an instance of Square two ...

Get PHP Quick Scripting Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.