dongzhao8233 2013-05-28 21:52
浏览 182
已采纳

斜杠添加到JSON

In live server unwanted slashes appending to encoding JSON, wherever single quote present.

Actually i'm trying to do rename Number as Nu'mber, just adding a single in between.

PHP Version 5.3.21

Result: {"values":"Nu\\'mber","lastvalue":"Number"}

i.e. ' replaced with \\'

whereas in my local-server, its working perfectly

PHP Version 5.3.13

Result: {"values":"Nu'mber","lastvalue":"Number"}

Also, i used stripslashes(), but no use of it. in some cases, i have to reuse the result JSON if i do that, more slashes appended .is this PHP version problem?

  • 写回答

1条回答 默认 最新

  • douyi8408 2013-05-28 21:55
    关注

    This has to do with magic quotes. You can turn them off in php.ini or in the code.

    From te manual, in php.ini:

    ; Magic quotes for incoming GET/POST/Cookie data.
    magic_quotes_gpc = Off
    
    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
    magic_quotes_runtime = Off
    
    ; Use Sybase-style magic quotes (escape ' with '' instead of \').
    magic_quotes_sybase = Off
    

    Or in your php code:

    if (get_magic_quotes_gpc()) {
        $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
        while (list($key, $val) = each($process)) {
            foreach ($val as $k => $v) {
                unset($process[$key][$k]);
                if (is_array($v)) {
                    $process[$key][stripslashes($k)] = $v;
                    $process[] = &$process[$key][stripslashes($k)];
                } else {
                    $process[$key][stripslashes($k)] = stripslashes($v);
                }
            }
        }
        unset($process);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部