先下载类文件,将类文件放到lib下,然后到入口文件定义一个新的的路径,以便引入文件. <?php namespace app\index\controller; use think\Controller; require EXTEND_PATH."/PHPExcel/Classes/PHPExcel.php"; use think\Db; use PHPExcel; use PHPExcel_Writer_Excel2007; use PHPExcel_Reader_Exc…
本例以thinkphp5.1为例 包地址: https://packagist.org/packages/phpoffice/phpexcel 使用: composer require phpoffice/phpexcel 控制器引入 //引入phpoffice use PHPExcel; use PHPExcel_IOFactory; 导出代码: //execl模板下载 public function template_download() { $objExcel = new PHPExcel…