Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created April 16, 2011 19:45
Show Gist options
  • Save avalanche123/923426 to your computer and use it in GitHub Desktop.
Save avalanche123/923426 to your computer and use it in GitHub Desktop.
arrays with __get
<?php
class Object
{
private $data = array();
public function __set($property, $value)
{
$this->data[$property] = $value;
}
public function __get($property)
{
$result = $this->data[$property];
return is_array($result) ? new ArrayObject($result) : $result;
}
}
$obj = new Object();
$obj->data = array('one' => 'two');
echo $obj->data['one'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment