php?数组

WBOY
WBOYOriginal
2016-06-20 12:54:00853Durchsuche

 foreach($rows as $k => $v){            print_r($v);            echo "<br>";        }输出的结果Array ( [id] => 3 [title] => 张三)Array ( [id] => 7 [title] => 李四 ) Array ( [id] => 9 [title] => 王五 )Array ( [id] => 2 [title] => 赵六 ) ......现在,要把输出的这些数组拼成一个新数组Array([3]=>张三 [7]=>李四 [9]=>王五 [2]=>赵六)


回复讨论(解决方案)

$ar = array(  array('id' => 3, 'title' => '张三'),  array('id' => 7, 'title' => '李四'),   array('id' => 9, 'title' => '王五'),  array('id' => 2, 'title' => '赵六'),);foreach($ar as $v) $res[$v['id']] = $v['title'];print_r($res);
Array(    [3] => 张三    [7] => 李四    [9] => 王五    [2] => 赵六)

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php 日期变下个月五号问题Nächster Artikel:Skype 在线图标地址