Lines Matching refs:null
7 $null->a = 42;
11 var_dump($null);
12 unset($null);
15 $null->a['hello'] = 42;
19 var_dump($null);
20 unset($null);
23 $null->a->b = 42;
27 var_dump($null);
28 unset($null);
31 $null->a['hello']->b = 42;
35 var_dump($null);
36 unset($null);
39 $null->a->b['hello'] = 42;
43 var_dump($null);
44 unset($null);
48 Attempt to assign property "a" on null
50 Warning: Undefined variable $null in %s on line %d
52 Attempt to modify property "a" on null
54 Warning: Undefined variable $null in %s on line %d
56 Attempt to modify property "a" on null
58 Warning: Undefined variable $null in %s on line %d
60 Attempt to modify property "a" on null
62 Warning: Undefined variable $null in %s on line %d
64 Attempt to modify property "a" on null
66 Warning: Undefined variable $null in %s on line %d