您好我正在使用PHPExcel从Excel文件导入mysql中的联系人。 直到今天一切都很好,当一个客户想要上传excel文件。 我正在使用此代码来读取excel文件:
$filetype = PHPExcel_IOFactory::identify(IEM_STORAGE_PATH . "/import/{$newfilename}");
$objReader = PHPExcel_IOFactory::createReader($filetype);
$objPHPExcel = $objReader->load(IEM_STORAGE_PATH . "/import/{$newfilename}");
foreach ($objPHPExcel->getWorksheetIterator() as $worksheet)
{
$importinfo['highestRow'] = $worksheet->getHighestRow(); // e.g. 10
$highestColumn = $worksheet->getHighestColumn(); // e.g 'F'
$importinfo['highestColumnIndex'] = PHPExcel_Cell::columnIndexFromString($highestColumn);
}
您可以在此处找到excel文件:https://phpexcel.codeplex.com/workitem/20675。 我花了5个多小时试图解决这个问题,但到目前为止还没有任何工作。