Lines Matching refs:base
8 // - base classes know about derived properties in constructor/destructor
9 // - base class constructors/destructors know the instantiated class name
11 class base {
16 $this->name = 'base';
26 class derived extends base {
46 echo "Testing class base\n";
47 $t = new base();
56 Testing class base
57 base::__construct
58 base Object
60 [name] => base
62 base::__destruct
63 base Object
65 [name] => base
73 base::__construct
77 [name] => base
85 base::__destruct