Horde_Imap_Client_Data_Format::escape PHP Method

escape() public method

Returns the data formatted for output to the IMAP server.
public escape ( ) : string
return string IMAP escaped string.
    public function escape()
    {
        return strval($this);
    }

Usage Example

Ejemplo n.º 1
0
 /**
  */
 public function escape()
 {
     return strlen($this->_data) ? parent::escape() : '""';
 }