Lines Matching refs:base
10 // - base classes know about derived properties in constructor/destructor
11 // - base class constructors/destructors know the instanciated class name
13 class base {
18 $this->name = 'base';
28 class derived extends base {
48 echo "Testing class base\n";
49 $t = new base();
58 Testing class base
59 base::__construct
60 base Object
62 [name] => base
64 base::__destruct
65 base Object
67 [name] => base
75 base::__construct
79 [name] => base
87 base::__destruct