我有一个多维数组:
$array['hello'][0][0]='a';
$array['hello'][0][1]='b';
$array['hello'][0][2]='c';
$array['hello'][0][3]='d';
$array['hello'][1][0]='e';
$array['hello'][1][1]='f';
$array['hello'][1][2]='g';
.... // and so on
我想将它们全部合并并希望它作为
$hello[1] = 'a';
$hello[2] = 'b';
$hello[3] = 'c';
$hello[4] = 'd';
$hello[5] = 'e';
$hello[6] = 'f';
$hello[7] = 'g';
.... // and so on
现在我一直在使用array_merge
:
$hello = array_merge($array['hello'][0],$array['hello'][1]);
但在这方面,我必须具体说明密钥,即。0
, 1
. 如果不知道密钥怎么办。
还有其他方法吗??