Lines Matching refs:incomplete
2 Check behaviour of incomplete class
18 $incomplete = unserialize($serialized);
43 echo "\n\n---> Same types of access on incomplete class:\n" ;
44 var_dump($incomplete);
45 var_dump(is_object($incomplete));
46 var_dump($incomplete->p);
49 $incomplete->p = &$ref2;
50 var_dump($incomplete->p);
52 var_dump($incomplete->p);
53 $incomplete->p = "p.changed";
56 var_dump(isset($incomplete->x));
57 $incomplete->x = "x.new";
58 var_dump(isset($incomplete->x));
59 unset($incomplete->x);
60 var_dump($incomplete->x);
62 $incomplete->f();
84 ---> Same types of access on incomplete class:
93 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
96 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
98 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
101 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
104 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
107 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
110 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
112 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
115 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
117 Notice: main(): The script tried to execute a method or access a property of an incomplete object. …
120 Fatal error: main(): The script tried to execute a method or access a property of an incomplete obj…