laravel的excel导出
Posted 刘菲菲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel的excel导出相关的知识,希望对你有一定的参考价值。
第一步:先在App文件目录下创建libs目录
第二步:将Excel.php第三方类文件引入
第三步:进入composer.json文件中,在autoload数组中classmap加入路径""app/libs/Excel.php""
第四步:到项目的根目录下,在命令行中运行composer dumpautoload
调用的方法为:
use Excel;
//excel表导出
public function excel()
{
$name=date("Y-m-d-H:i:s").rand(1000,9999).‘.xls‘;
$data=DB::table(‘admin‘)->get();
$obj=new Excel();
foreach($data as $k=>$v)
{
$info[$k][] = $v->admin_id;
$info[$k][] = $v->admin_name;
$info[$k][] = $v->admin_pwd;
}
$headtitle="<tr><th colspan=‘3‘>数据导出</th></tr>";
$title="ID号\t登录姓名\t登录密码\t\n";
$filename = $name;
$obj->excelData($info,$title,$headtitle,$filename);
}
Excel.php
<?php
class Excel{
/**
* @desc 将数据导出到Excel中
* @param $data array 设置表格数据
* @param $titlename string 设置head
* @param $title string 设置表头
* @param $filename 设置默认文件名
* @return 将字符串输出,即输出字节流,下载Excel文件
*/
public function excelData($data,$titlename,$title,$filename){
#xmlns即是xml的命名空间
$str = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\r\nxmlns:x=\"urn:schemas-microsoft-com:office:excel\"\r\nxmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>";
#以下构建一个html类型格式的表格
$str .= $title;
$str .="<table border=1><head>".$titlename."</head>";
foreach ($data as $key=> $rt )
{
$str .= "<tr>";
foreach ( $rt as $k => $v )
{
$str .= "<td>{$v}</td>";
}
$str .= "</tr>\n";
}
$str .= "</table></body></html>";
header( "Content-Type: application/vnd.ms-excel; name=‘excel‘" ); #类型
header( "Content-type: application/octet-stream" ); #告诉浏览器响应的对象的类型(字节流、浏览器默认使用下载方式处理)
header( "Content-Disposition: attachment; filename=".$filename ); #不打开此文件,刺激浏览器弹出下载窗口、下载文件默认命名
header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
header( "Pragma: no-cache" ); #保证不被缓存或者说保证获取的是最新的数据
header( "Expires: 0" );
exit( $str );
}
}
?>
以上是关于laravel的excel导出的主要内容,如果未能解决你的问题,请参考以下文章
使用 Laravel-Excel 和流的方法导出 Excel
laravel-admin 自定义导出excel功能,并导出图片