所以我的最终结果将是这个(最终结果将有48个条目):
$theArray=array(
$theArray1,
$theArray2,
$theArray3,
$theArray4,
$theArray5,
$theArray6
);
我尝试过一些东西,但我觉得这是最接近的,但我还没有,还有任何帮助。
$i = 0;
while ($i <= 48){
$theArray[]=${"theArray".$i.","}
$i++
}
$theArray[]=${"theArray".$i};
答案 0 :(得分:2)
$i = 0;
while ($i <= 48){
$theArray[]=${"theArray".$i.","}; // missed ; here
$i++; // missed ; here
}
$theArray[]=${"theArray".$i};
答案 1 :(得分:0)
您必须使用函数compact来创建包含变量的数组。请尝试阅读文档http://php.net/manual/en/function.compact.php
答案 2 :(得分:0)
保持简单如下:
<?php
$i = 0;
$theArray = array();
while ($i <= 48){
array_push($theArray, '$theArray'.$i);
$i++;
}
echo '$arr = array('.implode(',', $theArray).');';
?>
在你的最后运行这个。干杯!