quoted() 공개 메소드

Does this data item require quoted string output?
public quoted ( ) : boolean
리턴 boolean True if quoted output is required.
예제 #1
0
파일: Nstring.php 프로젝트: horde/horde
 /**
  */
 public function quoted()
 {
     return is_null($this->_data) ? false : parent::quoted();
 }