我做错了什么?
我正试图使用array_reverse
反转json_decode
,但我得到了以下错误
警告:arrayreverse((要求参数1为数组,对象给定
使用以下代码:
$data = file_get_contents($url);
$output = json_decode($data);
$output = array_reverse($output);
谢谢。
您必须在中放入第二个参数true
$output = json_decode($data, true);
默认情况下,json_decode
将json转换为php对象,如果您将true作为参数,它应该将其转换为数组