'And it worked the second time.', 'bar' => 'As well as the third.' ); public function __get($key) { return isset($this->_data[$key]) ? $this->_data[$key] : NULL; } public function __isset($key) { return isset($this->_data[$key]); } }