Advertisement
wingman007

PHP function __get($property) and __set($property, $value)

Jul 18th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1.     /**
  2.      * __get
  3.      *
  4.      * @param  string $property
  5.      * @throws Exception\InvalidArgumentException
  6.      * @return mixed
  7.      */
  8.     public function __get($property)
  9.     {
  10.         switch (strtolower($property)) {
  11.             case 'lastinsertvalue':
  12.                 return $this->lastInsertValue;
  13.             case 'adapter':
  14.                 return $this->adapter;
  15.             case 'table':
  16.                 return $this->table;
  17.         }
  18.         if ($this->featureSet->canCallMagicGet($property)) {
  19.             return $this->featureSet->callMagicGet($property);
  20.         }
  21.         throw new Exception\InvalidArgumentException('Invalid magic property access in ' . __CLASS__ . '::__get()');
  22.     }
  23.  
  24.     /**
  25.      * @param string $property
  26.      * @param mixed $value
  27.      * @return mixed
  28.      * @throws Exception\InvalidArgumentException
  29.      */
  30.     public function __set($property, $value)
  31.     {
  32.         if ($this->featureSet->canCallMagicSet($property)) {
  33.             return $this->featureSet->callMagicSet($property, $value);
  34.         }
  35.         throw new Exception\InvalidArgumentException('Invalid magic property access in ' . __CLASS__ . '::__set()');
  36.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement