Lines Matching refs:dynamic
37 echo "\n--> Write existent, non-existent and dynamic:\n";
39 $ao->dynamic = 'new';
40 $ao->dynamic = 'new.changed';
46 echo "\n--> Read existent, non-existent and dynamic:\n";
49 var_dump($ao->dynamic);
55 echo "\n--> isset existent, non-existent and dynamic:\n";
58 var_dump(isset($ao->dynamic));
64 echo "\n--> Unset existent, non-existent and dynamic:\n";
67 unset($ao->dynamic);
74 --> Write existent, non-existent and dynamic:
76 In UsesMagic::__set(dynamic,new)
77 In UsesMagic::__set(dynamic,new.changed)
106 --> Read existent, non-existent and dynamic:
111 In UsesMagic::__get(dynamic)
141 --> isset existent, non-existent and dynamic:
146 In UsesMagic::__isset(dynamic)
176 --> Unset existent, non-existent and dynamic:
179 In UsesMagic::__unset(dynamic)