尝试从url加载.xlsx文件,但显示错误消息,

Fatal error: Uncaught InvalidArgumentException: File
"http://localhost/test/csvfile/samplesms.xlsx" does not exist. in
D:\wamp\www\test\vendor\phpoffice\phpspreadsheet\src\PhpSpreadsheet\Shared\File.php on line 137


加载文件如下

 $filename = "http://localhost/test/csvfile/samplesms.xlsx";
 $reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader('Xlsx');
 $reader->setReadDataOnly(TRUE);
 $spreadsheet = $reader->load($filename);


文件已在给定位置。

最佳答案

phpoffice / spreadsheet不支持从URL加载。

关于phpoffice - 无法从URL phpoffice/电子表格加载文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49382469/

10-10 06:34