$v){...}"; 2. Convert by looping through the three-dimensional array."/> $v){...}"; 2. Convert by looping through the three-dimensional array.">
Home > Article > Backend Development > How to convert php three-dimensional array to two-dimensional array
php method to convert a three-dimensional array into a two-dimensional array: 1. Convert through the "foreach ($result as $key =>$v){...}" method; 2. Traverse the three-dimensional array through a loop array to convert.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
php three-dimensional array into two-dimensional array
<?php $result = Array(0 => Array(0 => Array(bid => 41,brealname => 'we教官',cid => 41,crealname => 'we教官')), 1 => Array(0 => Array(bid => 6,brealname => '虎子',cid => 19,crealname => '张鱼')) ); //原数组 print_r($result); echo "<br />"; //第一种方法: foreach ($result as $key =>$v){ $new_arr[]=$v[0]; } echo '<pre class="brush:php;toolbar:false">'; print_r($new_arr); //第二种方法 //初始化$arr2 $arr2=array(); //循环遍历三维数组$arr3 foreach($result as $value){ foreach($value as $v){ $arr2[]=$v; } } //销毁$arr3 unset($result,$value,$v); echo "<br /s>"; echo "第二种方法:"; echo '<pre class="brush:php;toolbar:false">'; print_r($arr2); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert php three-dimensional array to two-dimensional array. For more information, please follow other related articles on the PHP Chinese website!