最近,我使用Spreadsheet_Excel_Reader讀取codeigniter中的.xls文件。我已完成以下步驟:文件在codeigniter中無法讀取excel讀取器
- 將Spreadsheet_Excel_Reader粘貼到system/application/libraries中。
- 將您的index.php中的error_reporting更改爲error_reporting(E_ALL^E_NOTICE);
然後寫了下面的代碼在我的控制器:
$pathToFile = base_url().'uploads/loop.xls'; $params = array('file' => $pathToFile, 'store_extended_info' => true); $this->load->library('Spreadsheet_Excel_Reader', $params); $data['xlsFile'] = $this->spreadsheet_excel_reader->dump(false, false, 0, 'excel'); $this->load->view('test.php', $data);
但問題是這會顯示以下錯誤:
The filename http://www.example.com/uploads/loop.xls is not readable.
在這裏,文件的位置是正確的。該文件也是.xls格式。我怎樣才能解決這個錯誤?