您好,登錄后才能下訂單哦!
這篇文章主要介紹ThinkPHP6.0導出Excel的示例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
(1)安裝ThinkPHP6.0
composer create-project topthink/think tp2excel
(2)安裝Excel插件phpspreadsheet
composer require phpoffice/phpspreadsheet
(3)配置站點
(4)配置Nginx重寫
(5)啟動,查看首頁
(1)數據庫配置
(2)數據庫建表(略)
(1)引入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)導出結果
以上是“ThinkPHP6.0導出Excel的示例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。