📜  php json 数据到数组 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:50.102000             🧑  作者: Mango

代码示例2
json_decode('{foo:"bar"}');         // this fails
json_decode('{"foo":"bar"}', true); // returns array("foo" => "bar")
json_decode('{"foo":"bar"}');       // returns an object, not an array.