コード例 #1
0
ファイル: TempString.php プロジェクト: x59/horde-stream
 /**
  */
 public function __get($name)
 {
     switch ($name) {
         case 'stream':
             if ($this->_string) {
                 return $this->_string->stream;
             }
             break;
         case 'use_stream':
             return !(bool) $this->_string;
     }
     return parent::__get($name);
 }