getStream() public method

Return the contents of the string as a stream object.
Since: 2.3.0
public getStream ( ) : Horde_Stream
return Horde_Stream The stream object.
示例#1
0
文件: Nstring.php 项目: horde/horde
 /**
  */
 public function getStream()
 {
     return is_null($this->_data) ? new Horde_Stream_Temp() : parent::getStream();
 }