Lines Matching refs:incomplete

2 Check behaviour of incomplete class
7 $incomplete = unserialize($serialized);
32 echo "\n\n---> Same types of access on incomplete class:\n" ;
33 var_dump($incomplete);
34 var_dump(is_object($incomplete));
35 var_dump($incomplete->p);
39 $incomplete->p = &$ref2;
43 var_dump($incomplete->p);
45 var_dump($incomplete->p);
47 $incomplete->p = "p.changed";
53 var_dump(isset($incomplete->x));
55 $incomplete->x = "x.new";
59 var_dump(isset($incomplete->x));
61 unset($incomplete->x);
65 var_dump($incomplete->x);
68 $incomplete->f();
93 ---> Same types of access on incomplete class:
102 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
104 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
106 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
109 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
111 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
114 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
116 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
118 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
120 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
122 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
124 The script tried to call a method on an incomplete object. Please ensure that the class definition …