Quotes an identifier for a MySQL database, e.g. table/field names.
Parameters
$identifier
stringrequired- Identifier to escape.
Source
public function quote_identifier( $identifier ) {
return '`' . $this->_escape_identifier_value( $identifier ) . '`';
}
Changelog
Version | Description |
---|---|
6.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.