Horde_Imap_Client_Data_Format_String::getStream PHP Метод

getStream() публичный Метод

Return the contents of the string as a stream object.
С версии: 2.3.0
public getStream ( ) : Horde_Stream
Результат Horde_Stream The stream object.
    public function getStream()
    {
        return $this->_data;
    }

Usage Example

Пример #1
0
 /**
  */
 public function getStream()
 {
     return is_null($this->_data) ? new Horde_Stream_Temp() : parent::getStream();
 }