0

我检查的示例看起来很简单,但我无法弄清楚我做错了什么。我正在尝试将 JSON 文本转换并显示为 PHP 中的对象数组。

$json = '{"color1":red, "color2":blue, "color3":yellow}';
    $arr= json_decode($json, true);
    print_r($arr);

它不输出任何东西。但是当我打印 $json 时,输出就好了

4

1 回答 1

4

那不是json,试试

$json = '{"color1":"red", "color2":"blue", "color3":"yellow"}';
$arr= json_decode($json, true);
print_r($arr);

注意字符串用 引用",另见http://json.org

于 2013-09-06T03:23:25.710 回答