laravel excel从URL下载并解析文件

时间:2018-11-17 14:27:35

标签: php laravel

我正在使用Laravel excel package第2版,并且要从给定的URL下载 excel文件。 在版本3中添加了功能Excel::download。是否仍然可以在版本2中下载excel文件?也许可以使用PHP本身的file_get_contents()函数。

1 个答案:

答案 0 :(得分:0)

来自Maatwebsite / Excel文档:

Excel::create('Filename', function($excel) {

    })->export('xls');

    // or
    ->download('xls');

https://laravel-excel.maatwebsite.nl/2.1/export/export.html