我正在尝试阅读.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();
请提出任何建议!