0
我使用PHPExcel來讀取3個文件。其中2個是xls,1個是xlsx。我爲任務創建了2個閱讀器,但遇到錯誤。PHPExcel在同一個網頁中不能有2個閱讀器?
HTTP Error 500.0 - Internal Server Error
C:\AppServ\php5\php-cgi.exe - The FastCGI process exited unexpectedly
這是我的代碼
$inputFileType = PHPExcel_IOFactory::identify($conPath);
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
$objPHPExcel = $objReader->load($conPath);
$objReader = PHPExcel_IOFactory::createReader("Excel5");
$objPHPExcelShip = $objReader->load("Ship to mapping.xls");
$objPHPExcelMat = $objReader->load("Material Mapping.xls");
的$inputFileType
是上傳文件的類型變量(它是XLSX)。如果我上傳xls,代碼工作正常。但如果上傳的文件是xlsx,則會報錯。
請幫忙。
謝謝!我認爲我只需要實例化一個閱讀器並將它用於每個文件。 –