我有
$finalprint[$counting] = $ppn.' '.$ppn2;
通过使用循环,我将一些数据保存到数组中。现在也做了排序。
arsort($finalprint); // i think this would arrange the data into descending order by $counting
现在我有数据了
$finalprint[426] = "XYZ"
$finalprint[124] = "ABC"
$finalprint[333] = "MNO"
我如何打印这个数组的值,比如XYZ MNO ABC
?