iconv():在PHP Excel

时间:2018-06-05 10:52:53

标签: php phpexcel codeigniter-3

我正在尝试阅读.xls文件。我有一个法国角色Crèche。 我收到了PHPExcel错误:

  

遇到PHP错误

     

严重程度:通知
  消息:iconv():检测到输入字符串中不完整的多字节字符
  文件名:Shared / String.php

我的代码来阅读excel:

include(APPPATH."/third_party/PHPOffice/PHPExcel/IOFactory.php");      
$tmpfname = "$targetFile"; // file path   
$excelReader = PHPExcel_IOFactory::createReaderForFile($tmpfname);  
$excelObj = $excelReader->load($tmpfname);
$worksheet = $excelObj->getSheet(0);
$lastRow = $worksheet->getHighestRow();

请提出任何建议!

0 个答案:

没有答案