私は自由な意志で手動で書かれているので、外観によって並べ替える必要がある配列を持っています。なお、値が表示されることが予想されるヒントです:あなたは値が何もすることができます参照してください、私は必要なもののようPHPの外観による配列の並べ替え
$options = array("the array retrieved from some forms");
$items = array();
foreach ($options as $key => $val) {
switch ($key) {
case 'three':
$items[] = "this should come first";
$items[] = "now the second in order";
$items[] = "the third";
$items[] = "forth";
switch ($val) {
case 'a':
case 'b':
$items[] = "fifth";
$items[] = "should be six in order";
break;
case 'c':
default:
$items[] = "7 in order";
break;
}
break;
...............
それらの外観に基づいてアイテムを爆縮して表示することである。そのすべての手動の注文、最初に来るものは一番上に印刷する必要があります。
"this should come first";
"now the second in order";
"the third";
"forth";
"fifth";
"should be six in order";
"7 in order";
現在予期しない:
は期待
"should be six in order";
"forth";
"7 in order";
"the third";
"fifth";
"this should come first";
"now the second in order";
しかし、私はこのhttp://www.php.net/manual/en/array.sorting.php からソートのいずれかを適用することができないよう、私はそれらの$アイテムがどこかに命じている疑いがあります私は並べ替える方法がない形で私は上から下に向かって欲しいと思うので、出力と注文を書く力があります。しかし、私は自由に並べ替える必要があるので、キーを$ itemに入れることはできません。
私は出力を見て、キーは期待どおりに並べ替えられていません。
どのようなヒントもありがとうございます。ありがとう
がある場合は、'構文を、PHPは、配列の末尾に値を追加します。あなたのスクリプトの実行順序が順不同であるため、あなたの配列は順不同です。 – qJake
私の問題を説明する音。ありがとう – swan