将一些数据添加到数组中

时间:2013-06-30 14:02:47

标签: php

这里有一些代码

$highestRow = 16; // e.g. 10
$highestColumn = 'F'; // e.g 'F'

$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); // e.g. 5


for ($row = 9; $row <= $highestRow; ++$row) {
$val=array(); //i have initialized the array
  for ($col = 1; $col <= $highestColumnIndex; ++$col) {
   $cell=$objWorksheet->getCellByColumnAndRow($col, $row);
   $val[]=$cell->getValue();

  }
echo $val[0] //from what is read from excel, it returns data like this 7563
}

以前的数据如何在Excel工作表中,B975B106B113

阅读i echo $val[0] //output 7563

现在我想在结果中添加其他数据,所以如果我在添加信息后echo $val[0]显示输出为

echo $val[0] //output average=75% ; rsd = 6%; n=3% instead of just 7563

2 个答案:

答案 0 :(得分:0)

foreach ($k as $key=>$value) {
    echo $key."=".$value."; ";
}

答案 1 :(得分:0)

根据您拥有的数组类型,您可以直接将其编辑为字符串,或者必须将其转换为字符串。

如果该值已经是一个字符串,您可以简单地进行字符串操作,您可以创建一个临时字符串或使用原始字符串并立即编辑它以进行回显,具体取决于您的喜好。

$strTemp = "output average=substr($var[0],0,2)% ; "rsd =substr($var[0]%,2,1); n=substr($var[0]%,3,1);" //can also use $var[0] instead of strTemp

如果值是整数格式,则必须将值转换为字符串,然后才能从那里继续。如果你不知道如何,我建议这个帖子:Converting an integer to a string in PHP

另一件事,我建议将数字存储在数组的不同部分,这样就更容易引用它们并将它们区分开来。