Phactory\Sql\DbUtil\AbstractDbUtil::quoteIdentifier PHP 메소드

quoteIdentifier() 공개 메소드

public quoteIdentifier ( string $identifier ) : string
$identifier string name of table, column, etc
리턴 string quoted identifier
    public function quoteIdentifier($identifier)
    {
        $quote = $this->getQuoteChar();
        return $quote . $identifier . $quote;
    }