您好我正在尝试对我的查询进行排序。
$time = fetchTimesPlay($edit_uuid);
$time_records = array();
$time_records = sizeof($time);
for($x=0;$x<$time_records;$x++){
$max = sizeof($time[$x])/2;
for($i = 0; $i < $max;$i++){
unset($time[$x][$i]);
}
}
$dbResult[0]['times'] = $time;
任何帮助都将不胜感激。