(无版本信息可用,可能仅存在于 Git 中)
Session::quoteName — 添加引号
一个用于转义 SQL 名称和标识符的转义函数。它根据当前连接的设置转义给定的标识符。此转义函数不应用于转义值。
name
要转义的字符串。
转义后的字符串。
示例 #1 mysql_xdevapi\Session::quoteName() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$first = "MySQL's test";
var_dump($first);
var_dump($session->quoteName($first));
$second = 'Another `test` "like" `this`';
var_dump($second);
var_dump($session->quoteName($second));
?>
上面的示例将输出类似于以下内容
string(12) "MySQL's test" string(14) "`MySQL's test`" string(28) "Another `test` "like" `this`" string(34) "`Another ``test`` "like" ``this```"