예제 #1
0
 public function __get($name)
 {
     if (isset($this->_obj) && property_exists($this->_obj, $name) === true) {
         return $this->_obj->{$name};
     } else {
         return parent::__get($name);
     }
 }