Home > Backend Development > PHP Tutorial > 怎么把for循环出来的所有结果集形成¥test的格式。

怎么把for循环出来的所有结果集形成¥test的格式。

WBOY
Release: 2016-06-13 12:33:16
Original
828 people have browsed it

如何把for循环出来的所有结果集形成¥test的格式。。
比如我一个记录集$row 里面有一百条记录。

for($k=0;$k $arr=array($a[$k],$b[$k],$c[$k]));
print_r($arr);
}
我现在可以把这一百条循环出来,是一百个一唯数组,我现在想把这个变成一个二维数组,求写发。。

按照上面输出的结果是
Array ( [0] => a1 [1] => b1 [2] => c1 ) 
Array ( [0] => asdf2 [1] => b2df [2] => b2sd ) 
Array ( [0] => a3 [1] => b3 [2] => b6 )
Array ( [0] => a4 [1] => b4 [2] => sdfs ) 

我想要这样子的结果。,
是$test=Array ( [0] => a1 [1] => b1 [2] => c1 ) ,Array ( [0] => asdf2 [1] => b2df [2] => b2sd ) ,Array ( [0] => a3 [1] => b3 [2] => b6 ),Array ( [0] => a4 [1] => b4 [2] => sdfs ) 

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template