Session::quoteName

(无版本信息可用,可能仅存在于 Git 中)

Session::quoteName添加引号

说明

public mysql_xdevapi\Session::quoteName(string $name): string

一个用于转义 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```"
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top