我究竟做错了什么?
我正在尝试反转json_decode
使用array_reverse
,但出现以下错误
警告:array_reverse() 期望参数 1 是数组,给定对象
使用下面的代码:
$data = file_get_contents($url);
$output = json_decode($data);
$output = array_reverse($output);
谢谢。
我究竟做错了什么?
我正在尝试反转json_decode
使用array_reverse
,但出现以下错误
警告:array_reverse() 期望参数 1 是数组,给定对象
使用下面的代码:
$data = file_get_contents($url);
$output = json_decode($data);
$output = array_reverse($output);
谢谢。