quoted() public method

Does this data item require quoted string output?
public quoted ( ) : boolean
return boolean True if quoted output is required.
示例#1
0
文件: Nstring.php 项目: horde/horde
 /**
  */
 public function quoted()
 {
     return is_null($this->_data) ? false : parent::quoted();
 }