Horde_Imap_Client_Data_Format_String::quoted PHP Méthode

quoted() public méthode

Does this data item require quoted string output?
public quoted ( ) : boolean
Résultat boolean True if quoted output is required.
    public function quoted()
    {
        /* IMAP strings MUST be quoted if they are not a literal. */
        return !isset($this->_filter) || !$this->_filter->literal;
    }

Usage Example

Exemple #1
0
 /**
  */
 public function quoted()
 {
     return is_null($this->_data) ? false : parent::quoted();
 }