如何在php中将数组项放在末尾?
我想将一些数组项放在最后一个位置,当我循环并将 $arr 输出到 html 时,这将始终将“其他”项保留在最后。最好和最简单的方法是什么?
<?php
$arr=array(
'a'=>'hello',
'game'=>'boy',
'other'=>'good',
'name'=>'jimmy',
//...
);
// how to resort $arr to put other item to then end of $arr
$arr=array(
'a'=>'hello',
'game'=>'boy',
'name'=>'jimmy',
//...
'other'=>'good'
);
?>