Пример #1
0
 /**
  *
  * @param <type> $pMethod, $pParams
  * @return <type>
  */
 public function __call($pMethod, $pParams)
 {
     if (preg_match('~^domain_(.*)~', $pMethod, $hits)) {
         return call_user_func_array(array($this, $hits[1]), $pParams);
     }
     return parent::__call($pMethod, $pParams);
 }