当前位置:Gxlcms > PHP教程 > CannotuseobjectoftypePHPExcel_RichTextasarray

CannotuseobjectoftypePHPExcel_RichTextasarray

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

首先解释一下标题的意思:不能将富文本对象转换为数组

一般我们在上传导Excel的时候会出现此问题,问题的原因是Excel表格中有富文本对象。

解决方法1:
$student['actual_residence']=(string)$objPHPExcel->getActiveSheet()->getCell("M".$i)->getValue();
原理:将富文本对象转换为string类型。


解决方法2:
其实在PHPExcel中已经有转换的方法写好了,直接调用即可。
$objPHPExcel->getActiveSheet()->getCell("M".$i)->getValue()->__toString();

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了Cannot use object of type PHPExcel_RichText as array,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行