我正在使用Installatron API。在对它执行查询时,这是我得到的回报:
Array
(
[{"result":true,"message":"The_task_is_complete_\n","data":] => Array
(
[{"id":"wordpress_3.9","version":"3.9","branch":"current","name":"WordPress","category":"Content Management","type":"blog","date":"2014-04-16","license":"open source","tags":["major"] =>
)
)
我在解码json数据时遇到了一些问题。这就是我的尝试:
foreach($my_main_array as $key => $value) {
$no_json = json_decode($value, TRUE);
var_dump($no_json);
}
返回“NULL”和json_decode() expects parameter 1 to be string, array given
。根据我的理解,应该可以运行json_decode()
和数组。
在$key
上尝试时,我也会得到“NULL”:
$no_json = json_decode($key);
json_decode()
?json_decode
将此数据转换为PHP数组?