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中的資料了,可以再這裡對他進行操作,入庫或者其他....
});