我的参考功能不起作用

时间:2015-10-05 00:57:05

标签: php

我有一个字符串,我用第二个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关联数组产生影响,有没有人知道什么事了?

0 个答案:

没有答案