Lines Matching refs:th
7 public $a = array('1st', 1, 2=>'3rd', '4th'=>4);
35 var_dump(empty($obj['4th']));
36 var_dump(empty($obj['5th']));
43 var_dump(isset($obj['4th']));
44 var_dump(isset($obj['5th']));
51 var_dump($obj['4th']);
52 var_dump($obj['5th']);
60 $obj['4th'] = 'Changed 4th';
61 var_dump($obj['4th']);
63 $obj['5th'] = 'Added 5th';
64 var_dump($obj['5th']);
79 unset($obj['4th']);
81 unset($obj['8th']);
94 ["4th"]=>
107 object::offsetExists(4th)
108 object::offsetGet(4th)
110 object::offsetExists(5th)
121 object::offsetExists(4th)
123 object::offsetExists(5th)
134 object::offsetGet(4th)
136 object::offsetGet(5th)
138 Notice: Undefined index: 5th in %sarray_access_002.php on line %d
150 object::offsetSet(4th,Changed 4th)
151 object::offsetGet(4th)
152 string(11) "Changed 4th"
154 object::offsetSet(5th,Added 5th)
155 object::offsetGet(5th)
156 string(9) "Added 5th"
177 ["4th"]=>
178 string(11) "Changed 4th"
179 ["5th"]=>
180 string(9) "Added 5th"
185 object::offsetUnset(4th)
187 object::offsetUnset(8th)
193 ["5th"]=>
194 string(9) "Added 5th"