Lines Matching refs:a
6 private $a = [];8 return $this->a[$offset];11 $this->a[$offset] = $value;14 isset($this->a[$offset]);17 unset($this->a[$offset]);21 $obj = new ArrayObject(["a" => 1]);22 $obj["a"] .= "test";23 var_dump($obj["a"]);26 $obj["a"] = 1;27 $obj["a"] .= "test";28 var_dump($obj["a"]);