功能
添加斜杠 “\”,以完成对字符串的转义。
格式
addslashes_gpc( string $gpc )
描述
PHP 中的 magic_quotes_gpc()
函数也可以用来给字符加上声明转义的斜杠 “\”, 在 magic_quotes_gpc()
函数被启用的情况下,addslashes_gpc()
函数会首先移除这些斜杠。不过,从 PHP 7.4.0 开始,magic_quotes_gpc()
函数就被弃用了,从 PHP 8.0.0 开始,magic_quotes_gpc()
函数就被彻底移除了,更多信息,可以访问:https://www.php.net/manual/en/function.get-magic-quotes-gpc.php
参数
$gpc (string) (必须参数) 从 HTTP 请求数据中返回的字符串。
返回值
(string) 返回用斜杠 "\" 完成转义的字符串。
源码
代码所在文件:
wp-includes/formatting.php
相关代码片段:
function addslashes_gpc( $gpc ) { return wp_slash( $gpc ); }
变更日志:
- 自 WordPress 0.71 开始引入。
参考链接:https://developer.wordpress.org/reference/functions/addslashes_gpc/