Home >Backend Development >PHP Tutorial >php多维数组合并成一个数组

php多维数组合并成一个数组

WBOY
WBOYOriginal
2016-06-23 13:46:331747browse

Array ( [0] => Array ( [id] => 1 ) [1] => Array ( [id] => 2 ) ) 


回复讨论(解决方案)

多维数组也是一个数组
你想合并成什么样式的?

多维数组也是一个数组
你想合并成什么样式的?


刚才想点引用的,结果点成了丢转了。
我的意思是想把多维数组合并成一维数组。我好根据这个一维数组作为条件查找数据库

由于你没有给出你需要的格式,所以只能举一例

$a = Array(  Array( 'id' => 1 ),  Array( 'id' => 2 ));$a = array_map('current', $a);print_r($a); 
Array(    [0] => 1    [1] => 2)

$a = Array(  Array( 'id' => 1 ),  Array( 'id' => 2 ));$ar = array();foreach($a as $v) $ar[] = $v['id'];print_r($ar);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn