Calling a parent constructor when instantiating a child

suggest change

A common pitfall of child classes is that, if your parent and child both contain a constructor(__construct()) method, only the child class constructor will run. There may be occasions where you need to run the parent __construct() method from it’s child. If you need to do that, then you will need to use the parent:: scope resolutor:

parent::__construct();

Now harnessing that within a real-world situation would look something like:

class Foo {

    function __construct($args) { 
        echo 'parent'; 
    }

}

class Bar extends Foo {

    function __construct($args) {
        parent::__construct($args);
    }
}

The above will run the parent __construct() resulting in the echo being run.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Classes and objects:
* Calling a parent constructor when instantiating a child

Table Of Contents
2 Arrays
4 Types
10 Cookies
11 Classes and objects
14 JSON
15 SOAP
17 cURL
19 XML
21 Traits
35 UTF-8
36 URLs
38 PHPDoc
41 Loops
44 Closur
72 YAML
77 Cache
78 Streams
81 PDO
82 SQLite3
83 Sockets
87 MongoDB
93 IMAP
94 Redis
95 Imagick
102 APCu
108 PSR