Lines Matching refs:index
11 function offsetExists($index) {
12 echo __METHOD__ . "($index)\n";
13 return array_key_exists($index, $this->a);
15 function offsetGet($index) {
16 echo __METHOD__ . "($index)\n";
17 switch($index) {
25 return $this->a[$index];
27 function offsetSet($index, $newval) {
28 echo __METHOD__ . "($index,$newval)\n";
29 if ($index==3) {
32 return $this->a[$index] = $newval;
34 function offsetUnset($index) {
35 echo __METHOD__ . "($index)\n";
36 unset($this->a[$index]);