Array ( [0] => Array ( [wishid] => 21 [wish_title] => 我的心愿单07 ) [1] => Array ( [wishid] => 20 [wish_title] => 我的心愿单06 ) [2] => Array ( [wishid] => 19 [wish_title] => 我的心愿单05 ) [3] => Array ( [wishid] => 18 [wish_title] => 我的心愿单04 ) [4] => Array ( [wishid] => 17 [wish_title] => 我的心愿单003 ) [5] => Array ( [wishid] => 16 [wish_title] => 我的心愿单03 ) [6] => Array ( [wishid] => 15 [wish_title] => 我的心愿单02 ) )
结果想得到
array(
15=>我的心愿单02,
...
);
两个循环嵌套一下呗.
for(int i=0;i<array.length;i++)
{
for(int j=0;j<array[i].length;j++)
{
array[i][j];
}
}
Array ( [0] => Array ( [wishid] => 21 [wish_title] => 我的心愿单07 ) [1] => Array ( [wishid] => 20 [wish_title] => 我的心愿单06 ) [2] => Array ( [wishid] => 19 [wish_title] => 我的心愿单05 ) [3] => Array ( [wishid] => 18 [wish_title] => 我的心愿单04 ) [4] => Array ( [wishid] => 17 [wish_title] => 我的心愿单003 ) [5] => Array ( [wishid] => 16 [wish_title] => 我的心愿单03 ) [6] => Array ( [wishid] => 15 [wish_title] => 我的心愿单02 ) )
结果想得到
array(
15=>我的心愿单02,
...
);
我看你是想实现排序吧~