Lines Matching refs:this
17 $this->object = $object;
18 $this->oarray = &$array;
19 $this->element = $element;
23 echo __METHOD__ . "($this->element, $index)\n";
24 return array_key_exists($index, $this->oarray[$this->element]);
28 echo __METHOD__ . "($this->element, $index)\n";
29 …return isset($this->oarray[$this->element][$index]) ? $this->oarray[$this->element][$index] : NULL;
33 echo __METHOD__ . "($this->element, $index, $value)\n";
34 $this->oarray[$this->element][$index] = $value;
38 echo __METHOD__ . "($this->element, $index)\n";
39 unset($this->oarray[$this->element][$index]);
49 $this->person = array(array('name'=>'Foo'));
54 return array_key_exists($index, $this->person);
59 if (is_array($this->person[$index]))
61 return new ArrayAccessReferenceProxy($this, $this->person, $index);
65 return $this->person[$index];
71 $this->person[$index] = $value;
76 unset($this->person[$index]);