当前位置:Gxlcms > PHP教程 > php怎样原样输出变量名称和值

php怎样原样输出变量名称和值

时间:2021-07-01 10:21:17 帮助过:71人阅读

php-excel-reader操作excel中

$xls = new Spreadsheet_Excel_Reader();
$xls->setOutputEncoding('utf-8');
$xls->read($file_name);
for ($i=2; $i<=$xls->sheets[0]['numRows']; $i++)
{
for($n = 1; $n <= $xls->sheets[0]['numCols']; $n++)
{
'$'.$xls->sheets[0]['cells'][1][$n] = $xls->sheets[0]['cells'][$i][$n];
}
}

红色那个部分是excel中第一行的标题,我做成了数据库中的字段了,如
title name
中国 成龙

所以在入库之前是需要
$title = '中国';
$name = '成龙';

现在是红色部分该如何写才能变成上面那样呢?


回复讨论(解决方案)

。。。才发完就自己解决了
'$'.$xls->sheets[0]['cells'][1][$n] = $xls->sheets[0]['cells'][$i][$n];
改成
${$xls->sheets[0][cells][1][$n]} = $xls->sheets[0]['cells'][$i][$n];

忘记大括号了。

人气教程排行