这不是explode
可以解决的
我有几个数组
$order
data: {5,3,2}
$title,
data: {USA, England, China}
$attribute
Same idea
$type
Same idea
$order 已经存在某个值
{5,3,2} 并且每个都有相应的 $title,$attribute,$type 值
eg. 5 USA att5 type5
我想将顺序排序为 {2,3,5} 并且其他数组中的相应数据也将被排序。
eg. {2,3,5}
之后为数组 $title
是
{China, England,USA}
如何为所有数组实现这一点?谢谢
我的想法是使用关联数组,我可以对键进行排序,一切都完成了。但是,我无法生成数组
我的想法数组:
$records = array(5 => array("title" => "USA", "att" => "add5"),
3 => array("title" => "England", "att" => "add3"),
2 => array("title" => "China", "att" => "add2"));