您好我正在使用 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 个多小时试图解决这个问题,但到目前为止没有任何效果。