HosipLan

Untitled

Aug 25th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1.     public function __call($name, $args)
  2.     {
  3.         $this->__load();
  4.         return parent::__call($name, $args);
  5.     }
  6.  
  7.     public function &__get($name)
  8.     {
  9.         $this->__load();
  10.         return parent::__get($name);
  11.     }
  12.  
  13.     public function __set($name, $value)
  14.     {
  15.         $this->__load();
  16.         return parent::__set($name, $value);
  17.     }
  18.  
  19.     public function __isset($name)
  20.     {
  21.         $this->__load();
  22.         return parent::__isset($name);
Advertisement
Add Comment
Please, Sign In to add comment