escapeStream() 공개 메소드

Return the escaped string as a stream.
public escapeStream ( ) : resource
리턴 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();
 }