我有超級英雄的數組命名爲$heroes
:排序陣列 - PHP
$heroes=array("Hulk","Spiderman","IronMan");
,我有一個名爲$powers
的基本權力的數組:
$powers=array("Strong","Webs","Machine");
我想排序$heroes
數組按字母順序排列,以便它顯示:
$heroes=array("Hulk","IronMan","Spiderman");
以及與此,我想的權力,基於$英雄陣列上,以便它顯示這個排序:
$powers=array("Strong","Machine","Webs");
我不喜歡用一個二維數組 - 我需要他們在單獨陣列。有任何想法嗎?
太感謝你了! – 2012-02-11 19:27:08