順序を次のように変更したい:
$array = array(
"a" => "bar",
"b" => "foo",
"c" => "bar",
"d" => "foo",
"e" => "bar",
"f" => "foo",
"g" => "bar",
"h" => "foo",
"i" => "bar",
"j" => "foo"
);
に:
$array = array(
"a" => "bar", "f"=> "foo",
"b" => "foo", "g"=> "bar",
"c" => "bar", "h"=> "foo",
"d" => "foo", "i"=> "bar",
"e" => "bar", "j"=> "foo"
);
これのポイントは、配列内のアイテムでテーブルを埋めたいということです。
配列は次のように並べ替えないでください。
<table>
<tr><td>Item 1</td><td>Item 2</td></tr>
<tr><td>Item 3</td><td>Item 4</td></tr>
</table>
しかし、このように:
<table>
<tr><td>Item 1</td><td>Item 3</td></tr>
<tr><td>Item 2</td><td>Item 4</td></tr>
</table>
ありがとう