<?php class example{ /*Member variables*/ protected $b = array(); public function &__get($name) { return $this->$name; } public function __set($name, $value) { $this->$name = $value; } } $fun = new example(); $x = $fun->b; $x[] = 42; var_dump($fun->b); $fun->b[] = 42; var_dump($fun->b);
You have javascript disabled. You will not be able to edit any code.