php架構laravel excel包使用教程介紹

來源:互聯網
上載者:User

laravel中excel外掛程式的安裝

在composer中引入laravel excel的包

    "maatwebsite/excel": "1.*"
在位於laravel/app/config下編輯app.php檔案,在providers數組中添加以下值

    'Maatwebsite\Excel\ExcelServiceProvider',
在同檔案中找到aliasses數組添加以下值

    'Excel' => 'Maatwebsite\Excel\Facades\Excel',
執行composer install 或 composer update命令.

laravel excel的配置

在位於laravel/vendor/maatwebsite/excel/src/config下一些對於外掛程式的一些配置項

config.php > 對excel和表全域的一些設定
csv.php > 對匯入匯出csv檔案的設定
export.pho > 對列印出檔案內容的一些設定
import.php > 對匯入excel檔案的設定

laravel excel的簡單使用

在之前的準備工作都做好了以後我們就可以用excel外掛程式了

匯出excel

<?php
$rows = array( array( 'id' => 1, 'name' => 'marlon' ) );

Excel::create($name, function($excel) use ($rows) {
    $excel->sheet('當天報名', function($sheet) use ($rows) {
        $sheet->fromArray($rows);
    });
})->store('xls', storage_path('excel'));

由於在php閉包中無法拿到閉包外的變數,所以需要用use把$rows引入進去,在最後的鏈式調用的store中所傳的參數就是所需excel的格式和要儲存到伺服器的位置,此為絕對路徑.

在這個地方store()方法為儲存,相對應的還可以使用download()方法來直接下載,至於export方法筆者還沒搞懂用處是什麼

匯入excel

<?php
Excel::load(Input::file('excel'), function($reader) {
    //擷取excel的第幾張表
    $reader = $reader->getSheet(0);
    //擷取表中的資料
    $results = $reader->toArray();
    //在這裡的時候$results 已經是excel中的資料了,可以再這裡對他進行操作,入庫或者其他....
});

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.