次の配列があります。
items = array(
'note' => array(),
'text' => array(),
'year' => array()
)
ので、私は持っています:
[note] => Array
(
[0] => 'note1'
[1] => 'note2'
[2] => 'note3'
),
[text] => Array
(
[0] => 'text1'
[1] => 'text2'
[2] => 'test3'
),
[year] => Array
(
[0] => '2002'
[1] => '2000'
[2] => '2011'
)
そして、上記の配列を年ごとに並べたいと思います。しかし、要素を移動するときは、対応する要素を他の配列(メモ、テキスト)に移動したいと思います。
例えば:
[note] => Array
(
[2] => 'note3'
[0] => 'note1'
[1] => 'note2'
),
[text] => Array
(
[2] => 'text3'
[0] => 'text1'
[1] => 'test2'
),
[year] => Array
(
[2] => '2011'
[0] => '2002'
[1] => '2000'
)