フォーム送信から次の配列があります。
Array ( [id0] => id [gd0] => 50% [q0] => 1 [p0] => 10 [t0] => 10 [id1] => id [gd1] => 65% [q1] => 2 [p1] => 20 [t1] => 40 [id2] => id [gd2] => 90% [q2] => 2 [p2] => 510 [t2] => 1020 )
次のような新しいパターンで同じ値を格納することにより、2次元配列にしたいです。
Array (array([id0] => id [gd0] => 50% [q0] => 1 [p0] => 10 [t0] => 10 ) , array([id1] => id [gd1] => 65% [q1] => 2 [p1] => 20 [t1] => 40 ) , array([id2] => id [gd2] => 90% [q2] => 2 [p2] => 510 [t2] => 1020))
したがって、私は別の配列の新しい次元で同様の情報を再配置しようとしています。foreachループを試しましたが、うまくいきませんでした。
$items = array();
$X = -1; // the index of the first dimension
$Y = 0; // the second index
foreach ($_POST as $val) {
if ($val == 'id') {
$X++;
$Y = 0;
} else {
$items[$X][$Y] == $val;
// increment the second index to prevent overwriting
$Y++;
}
}
print_r($items);
ただし、動作していません。print_r()
表示のみArray()