10bet网址
MySQL PHP API
Download this Manual

5.27.12Session::quoteName

Copyright 1997-2021 the PHP Documentation Group.

  • Session::quoteName

    Add quotes

Description

publicstringmysql_xdevapi\Session::quoteName(stringname);

A quoting function to escape SQL names and identifiers. It escapes the identifier given in accordance to the settings of the current connection. This escape function should not be used to escape values.

Parameters

name

The string to quote.

Return Values

The quoted string.

Examples

Example 5.122mysql_xdevapi\Session::quoteNameexample

quoteName($first)); $second = 'Another `test` "like" `this`'; var_dump($second); var_dump($session->quoteName($second)); ?>

The above example will output something similar to:

string(12) "MySQL's test" string(14) "`MySQL's test`" string(28) "Another `test` "like" `this`" string(34) "`Another ``test`` "like" ``this```"