Created
April 16, 2011 19:45
-
-
Save avalanche123/923426 to your computer and use it in GitHub Desktop.
arrays with __get
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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