PHP json_decode不工作 - 显示NULL输出

时间:2013-05-15 02:13:38

标签: php json

我正在尝试使用JSON解码来检索某些信息,但它不起作用,它只是在我使用var_dump时将数据显示为null

这是在URL

中传递的JSON格式数据
orderSummary={"orderInfo":[{"itemNumber":"1","quantity":"3","price":"5.99","productName":"Item_B"}]}

当我简单地回显未解码的字符串时,我得到以下内容

echo $_GET['orderSummary'];
//displays the following
{\"orderInfo\":[{\"itemNumber\":\"1\",\"quantity\":\"3\",\"price\":\"5.99\",\"productName\":\"Item_B\"}]}

但是,当我尝试解码时,结果为空

$order = $_GET['orderSummary'];
$data = json_decode($order,true);
echo "<PRE>";
var_dump($data); die();
//displays the following
<PRE>NULL

格式不正确吗?

1 个答案:

答案 0 :(得分:14)

首先通过stripslashes()运行输入字符串。

$input = '{\"orderInfo\":[{\"itemNumber\":\"1\",\"quantity\":\"3\",\"price\":\"5.99\",\"productName\":\"Item_B\"}]}';

print_r(json_decode(stripslashes($input)));

<强>输出

stdClass Object
(
    [orderInfo] => Array
        (
            [0] => stdClass Object
                (
                    [itemNumber] => 1
                    [quantity] => 3
                    [price] => 5.99
                    [productName] => Item_B
                )

        )

)

Demo

另外

关闭magic_quotes_gpc。考虑到它已被弃用(并在5.4中删除),这是更好的选择