我有一个字符串,我用第二个arg的json_decode来获取一个关联数组。
我现在需要遍历那里的每个字符串并在其中使用striplashes。
所以我写了这个函数:
function stripslashes_in_json(&$phpJsonDecodedTrue) {
if (is_array($phpJsonDecodedTrue)) {
foreach ($phpJsonDecodedTrue as &$v) {
if (is_string($v)) {
$v = stripslashes($v);
} else if (is_array($v)) {
stripslashes_in_json($v);
}
}
}
}
然而,我没有对我传入的json_decoded关联数组产生影响,有没有人知道什么事了?