escapeStream() public method

Return the escaped string as a stream.
public escapeStream ( ) : resource
return resource The IMAP escaped stream.
示例#1
0
文件: Nstring.php 项目: horde/horde
 public function escapeStream()
 {
     if (is_null($this->_data)) {
         $stream = new Horde_Stream_Temp();
         $stream->add('NIL', true);
         return $stream->stream;
     }
     return parent::escapeStream();
 }