怎么在php中使用lavarel框架导出文件?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
php有什么用
php是一个嵌套的缩写名称,是英文超级文本预处理语言,它的语法混合了C、Java、Perl以及php自创新的语法,主要用来做网站开发,许多小型网站都用php开发,因为php是开源的,从而使得php经久不衰。
一、导出文件
创建一个干净的控制器 ExcelController.php :
php artisan make:controller ExcelController --plain
然后在 routes.php 中定义相关路由:
Route::get('excel/export','ExcelController@export');Route::get('excel/import','ExcelController@import');
接下来在 ExcelController.php 中定义 export 方法实现导出功能:
<?php namespace App\Http\Controllers;use Illuminate\Foundation\Bus\DispatchesJobs;use Illuminate\Routing\Controller as BaseController;use Illuminate\Foundation\Validation\ValidatesRequests;use Illuminate\Foundation\Auth\Access\AuthorizesRequests;use PHPExcel;//引入excel类use IOFactory;use DB;class ExcelController extends Controller{ //导出 public function Excel(){ $query=DB::table('change')->get();//查询表 //print_r($query); if(!$query) return false;//判断是否为空值 $obj=new PHPExcel();//实例化excel类 include_once('../app/libs/PhpExcel/PHPExcel/IOFactory.php');//引入IOFactory.php $obj->getProperties()-> setTitle("export") ->setDescription("none"); $obj-> setActiveSheetIndex(0); $fields = DB::select("SHOW COLUMNS FROM `change`");//查询goods表中所有列名 //print_r($fields);die; $col = 0;//定义列 foreach($fields as $field){ $field =$field['Field']; $obj-> getActiveSheet() -> setCellValueByColumnAndRow($col, 1,$field); $col++; } $row = 2;//定义行 foreach($query as $data) { $col =0; foreach($fields as $field) { //print_r($data); $field =$field['Field']; $obj->getActiveSheet()->setCellValueByColumnAndRow($col,$row,!empty($data["$field"])?$data["$field"]:''); $col++; } $row++; } $obj-> setActiveSheetIndex(0); $objWriter =IOFactory :: createWriter($obj, 'Excel5'); header('Content-Type:application/vnd.ms-excel'); header('Content-Disposition:attachment;filename="Brand_' .date('Y-m-d') . '.xls"'); header('Cache-Control:max-age=0'); $objWriter-> save('php://output'); }}
二、导入文件
//Excel文件导入功能 public function import() { $filePath = 'storage/exports/'.iconv('UTF-8', 'GBK', '用户信息').'.xls'; Excel::load($filePath, function($reader) { $data = $reader->all(); dd($data); });}
关于怎么在php中使用lavarel框架导出文件问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注编程网行业资讯频道了解更多相关知识。