quoteColumnName() 공개 메소드

Quotes a column name for use in a query.
public quoteColumnName ( string $name ) : string
$name string column name
리턴 string the properly quoted column name
예제 #1
0
 /**
  * Quotes a column name for use in a query.
  * @param string $name column name
  * @return string the properly quoted column name
  */
 public function quoteColumnName($name)
 {
     return parent::quoteColumnName($name, '`', '`');
 }