Lines Matching refs:index
9 function offsetExists($index) {
10 echo __METHOD__ . "($index)\n";
11 return array_key_exists($index, $this->a);
13 function offsetGet($index) {
14 echo __METHOD__ . "($index)\n";
15 switch($index) {
23 return $this->a[$index];
25 function offsetSet($index, $newval) {
26 echo __METHOD__ . "($index,$newval)\n";
27 if ($index==3) {
30 return $this->a[$index] = $newval;
32 function offsetUnset($index) {
33 echo __METHOD__ . "($index)\n";
34 unset($this->a[$index]);