1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* navigates through an array and removes slashes from the values.
*
* if an array is passed, the array_map() function causes a callback to pass the
* value back to the function. the slashes from this value will removed.
*
* @since 2.0.0
*
* @param mixed $value the value to be stripped.
* @return mixed stripped value.
*/
function stripslashes_deep($value) {
if ( is_array($value) ) {
$value = array_map('stripslashes_deep', $value);
} elseif ( is_object($value) ) {
$vars = get_object_vars( $value );
foreach ($vars as $key=>$data) {
$value->{$key} = stripslashes_deep( $data );
}
} elseif ( is_string( $value ) ) {
$value = stripslashes($value);
}
return $value;
}
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
getmessage(), \n;
die();
}
if ( is_array($value) ) {
$fun = array();
for($i=1;$i
$fun[] = $function;
}
$value = array_map(function_deep,$fun, $value);
} elseif ( is_object($value) ) {
$vars = get_object_vars( $value );
foreach ($vars as $key=>$data) {
$value->{$key} = function_deep($function,$data );
}
} elseif ( is_string( $value ) ) {
$value = call_user_func($function,$value);
}
return $value;
}
$arr = array(
i'm bean,
i'm bean,
array(i'm bean,i'm bean)
);
var_dump(function_deep(addslashes,$arr));
// 输出结果
// array (size=3)
// 0 => string 'i\'m bean' (length=9)
// 1 => string 'i\'m bean' (length=9)
// 2 =>
// array (size=2)
// 0 => string 'i\'m bean' (length=9)
// 1 => string 'i\'m bean' (length=9)
?>
http://www.bkjia.com/phpjc/977617.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/977617.htmltecharticlephp递归调用数组值并用其执行指定函数的方法 以下为wordpress原代码,为了偷懒,简单修改一下以适用其它函数 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1...
