__get() 공개 메소드

public __get ( $name )
예제 #1
0
파일: Forward.php 프로젝트: DSNS-LAB/Dmail
 /**
  */
 public function __get($name)
 {
     switch ($name) {
         case 'recipients':
             return $this->_recipients;
     }
     return parent::__get($name);
 }
예제 #2
0
 /**
  */
 public function __get($name)
 {
     switch ($name) {
         case 'msg_id':
             return $this->_msgId;
     }
     return parent::__get($name);
 }