欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2024-01-01 08:24:28
...
php-excel-reader操作excel中

$xls = new Spreadsheet_Excel_Reader();
$xls->setOutputEncoding('utf-8');
$xls->read($file_name);
for ($i=2; $isheets[0]['numRows']; $i++)
{
for($n = 1; $n 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];

忘记大括号了。

上一篇:

下一篇: