ORM::_quote_one_identifier PHP 메소드

_quote_one_identifier() 보호된 메소드

Quote a string that is used as an identifier (table names, column names etc). This method can also deal with dot-separated identifiers eg table.column
protected _quote_one_identifier ( $identifier )
    protected function _quote_one_identifier($identifier)
    {
        $parts = explode('.', $identifier);
        $parts = array_map(array($this, '_quote_identifier_part'), $parts);
        return join('.', $parts);
    }
ORM