class MyArray implements ArrayAccess {
private $container = array();
public function __construct($arr){
$this->container = $arr;
}
public function offsetSet($offset, $value) {
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
public function offsetExists($offset) {
return isset($this->container[$offset]);
}
public function offsetUnset($offset) {
unset($this->container[$offset]);
}
public function offsetGet($offset) {
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
}
class foo{
private $arr;
public function __construct(){
$this->arr = new MyArray(array('1'=>'one', '2'=>'two'));
}
public function __get($property){
var_dump(isset($this->{$property}));
if(!isset($this->$property)){
return -1;
} else {
return $this->$property;
}
}
}
$a = new foo();
view($a->arrzzzz); // Работает, выводит -1
view($a->arr); // Работает, выводит MyArray Object
view($a->arr[2]); // Работает, выводит элемент массива two
view($a->arr[3]); // Не работает, isset возвращает true