我正在尝试使用 php-excel-reader( http://www.yiiframework.com/extension/php-excel-reader/ ) 扩展将 excel 文件上传到数据库中。我试图实现扩展页面中提供的示例功能。但我不断收到错误“未定义的索引:dontprint”。我无法理解导致错误的原因。请帮助。这是我的控制代码。
public function actionUpload()
{
Yii::import('ext.phpexcelreader.JPhpExcelReader');
$data=new JPhpExcelReader(Yii::app()->getBasePath().'/import/example.xls');
echo $data->dump(true,true);
}
这是扩展代码中涉及 dontprint 的代码。
for($col=1;$col<=$this->colcount($sheet);$col++) {
// Account for Rowspans/Colspans
$rowspan = $this->rowspan($row,$col,$sheet);
$colspan = $this->colspan($row,$col,$sheet);
for($i=0;$i<$rowspan;$i++) {
for($j=0;$j<$colspan;$j++) {
if ($i>0 || $j>0) {
$this->sheets[$sheet]['cellsInfo'][$row+$i][$col+$j]['dontprint']=1;
}
}
}
if(!$this->sheets[$sheet]['cellsInfo'][$row][$col]['dontprint']) {
$style = $this->style($row,$col,$sheet);
if ($this->colhidden($col,$sheet)) {
$style .= "display:none;";
}
任何帮助表示赞赏。提前致谢。