<?php class MyClass { protected $data = array('some' => array('sub' => 'data')); public function __set($name, $value) { $this->data[$name] = $value; } public function __get($name) { return & $this->data[$name]; } } $my = new MyClass(); $my->some['sub'] = 'test'; // пытаемся изменить значение echo $my->some['sub']; // выведет 'data'
You have javascript disabled. You will not be able to edit any code.