使用PHP增加数组中的数组值

时间:2016-05-17 09:19:54

标签: php arrays

所以我的最终结果将是这个(最终结果将有48个条目):

$theArray=array(
$theArray1,
$theArray2,
$theArray3,
$theArray4,
$theArray5,
$theArray6
);

我尝试过一些东西,但我觉得这是最接近的,但我还没有,还有任何帮助。

$i = 0;
while ($i <= 48){
  $theArray[]=${"theArray".$i.","}
  $i++
 }
$theArray[]=${"theArray".$i};

3 个答案:

答案 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

以下是一些示例http://www.w3schools.com/php/func_array_compact.asp

答案 2 :(得分:0)

保持简单如下:

<?php
$i = 0;
$theArray = array();
while ($i <= 48){
  array_push($theArray, '$theArray'.$i);
  $i++;
 }
echo '$arr = array('.implode(',', $theArray).');';
?>

在你的最后运行这个。干杯!