ThinkPHP6.0 匯出 Excel 案例

linzening發表於2020-03-22

(1)安裝ThinkPHP6.0

composer create-project topthink/think tp2excel

(2)安裝Excel外掛phpspreadsheet

composer require phpoffice/phpspreadsheet

(3)配置站點

PHPEnv的配置-站點配置

(4)配置Nginx重寫

PHPEnv的配置-重寫
(5)啟動,檢視首頁

ThinkPHP6.0首頁

(1)資料庫配置

資料庫配置

(2)資料庫建表(略)

(1)引入Spread.php外掛

引入Spread.php外掛
(2)查詢資料並匯出

<?php
namespace app\controller;

use app\BaseController;
use think\facade\Db;
use Tools\Spread;

class Index extends BaseController
{
    public function index()
    {
        return '<html><a href="/index/excel.html?limit=2000">匯出Excel</a><html>';
    }

    public function excel($limit = 10)
    {
        $expTableData = Db::table('b_demo')->limit($limit)->select();
        $fileName = "IP地址匯出";
        $Excel['fileName']=$fileName.date('Y年m月d日-His',time());//or $xlsTitle
        $Excel['cellName']=['A','B','C','D'];
        $Excel['H'] = ['A'=>12,'B'=>22,'C'=>28,'D'=>38];//橫向水平寬度
        $Excel['V'] = ['1'=>40,'2'=>26];//縱向垂直高度
        $Excel['sheetTitle']=$fileName;//大標題,自定義
        $Excel['xlsCell']=[
            ['id','編號'],
            ['start','開始IP'],
            ['end','結束IP'],
            ['disp','地區']];
        Spread::excelPut($Excel,$expTableData);
    }
}

(3)匯出結果

匯出結果

程式下載:http://uss.comeround.cn/res/thinkphp6-exce...

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章