WordPress函数文档add_magic_quotes()
过滤数组中的每一个元素,并且可以递归过滤 描述 译文 过滤内容时访问数组中的每一个元素。 原文 过滤数组中的每…
过滤数组中的每一个元素,并且可以递归过滤
描述
译文
过滤内容时访问数组中的每一个元素。
原文
过滤数组中的每一个元素,并且可以递归过滤。
用法
<?php add_magic_quotes( $array ) ?>
参数
$array
(array) (必填) 需要过滤的数组。
默认值: None
返回值
(array)
元素内容已经过滤的数组 $array.
注意
- 使用到 global: (object) $wpdb to sanitize values
历史
添加于 版本: 0.71
源文件
add_magic_quotes() 函数的代码位于 wp-includes/functions.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Walks the array while sanitizing the contents.
*
* @since 0.71
*
* @param array $array Array to walk while sanitizing contents.
* @return array Sanitized $array.
*/
function add_magic_quotes( $array ) {
foreach ( (array) $array as $k => $v ) {
if ( is_array( $v ) ) {
$array[$k] = add_magic_quotes( $v );
} else {
$array[$k] = addslashes( $v );
}
}
return $array;
}
|
- 原文:http://codex.wordpress.org/Function_Reference/add_magic_quotes
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!