WordPress函数文档addslashes_gpc()
给转义的字符串添加 / 描述 译文 添加斜线以避免使用字符串。 如果magic-quotes-gpc被赋值,函…
给转义的字符串添加 /
描述
译文
添加斜线以避免使用字符串。
如果magic-quotes-gpc被赋值,函数会先删除斜线,详细信息参见magic_quotes。
原文
给转义的字符串添加 /
如果 PHP 中设置了 magic-quotes-gpc,首先把所有 / 删除。
用法
<?php addslashes_gpc( $gpc ) ?>
参数
$gpc
(string) (必填) HTTP 请求数据中返回的字符串
默认值: None
返回值
(string)
返回使用 / 转义之后的字符串。
注意
- 使用到 global: (object) $wpdb
- In this context, this: ‘‘ is a slash.
历史
添加于 版本: 0.71
源文件
addslashes_gpc() 函数的代码位于 wp-includes/formatting.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Adds slashes to escape strings.
*
* Slashes will first be removed if magic_quotes_gpc is set, see {@link
* http://www.php.net/magic_quotes} for more details.
*
* @since 0.71
*
* @param string $gpc The string returned from HTTP request data.
* @return string Returns a string escaped with slashes.
*/
function addslashes_gpc($gpc) {
if ( get_magic_quotes_gpc() )
$gpc = stripslashes($gpc);
return wp_slash($gpc);
}
|
- 原文:http://codex.wordpress.org/Function_Reference/addslashes_gpc
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!