search
HomeBackend DevelopmentPHP Tutorialyii2 数据导出 excel导出以及导出数据时列超过26列时解决方法

yii2 数据导出 excel导出以及导出数据时列超过26列时解决办法

作者:白狼 出处:http://www.manks.top/article/yii2_excel_extension? 本文版权归作者,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

先概括下我们接下来要说的大致内容:

数据列表页面导出excel数据,

1、可以根据GridView的filter进行搜索数据并导出  

2、可以自行扩展数据导出的时间直接导出数据 

//先来看controller层,接收GridView参数并做拼接处理

php controller

 

//传参导出<br />$paramsExcel = ''; //这个参数是控制接收view层GridView::widget filter的参数<br />if ( ($params = Yii::$app->request->queryParams) )<br />{<br />    if ($params && isset($params['xxSearch']) && $params['xxSearch'])<br />    {<br />        foreach ($params['xxSearch'] as $k => $v) <br />        {<br />            if ($v)<br />            {<br />                $paramsExcel .= $k.'='.$v.'&';<br />            }<br />        }<br /><br />    }<br />    $paramsExcel = rtrim($paramsExcel, '&');<br />}

//看view层我们需要做什么

php 输入页面上的html按钮

 

<div style="margin-bottom: 30px;"><br />        <?= Html::a('导出', 'javascript:ed();', ['class' => 'btn btn-success']) ?><br />        开始时间:<input type="text" name="start_time" /><br />        结束时间:<input type="text" name="end_time" /><br /></div>

上面javascript:ed()方法如下,注意这里我们拼接了controller层传递过来的参数,并自行扩展了时间进行搜索数据

//数据导出<br />function ed ()<br />{<br />    var paramsExcel = "<?php echo $paramsExcel; //controller传递过来的参数?>", <br />        url = '/xx/export-data', //此处xx是控制器<br />        startTime = $.trim($('input[name=start_time]').val()), <br />        endTime = $.trim($('input[name=end_time]').val()),<br />        temp = '';<br />    <br />    //需要把view层GridView::widget filter的参数与我们自行扩展的参数拼接融合<br />    if (paramsExcel)<br />    {<br />        temp += '?'+paramsExcel;<br />        if (startTime)<br />            temp += '&start_time='+startTime;<br />        <br />        if (endTime)<br />            temp += '&end_time='+endTime;<br />    } <br />    else if (startTime)<br />    {<br />        temp += '?start_time='+startTime;<br />        if (endTime)<br />            temp += '&end_time='+endTime;<br />    }<br />    else if (endTime)<br />    {<br />        temp += '?end_time='+endTime;<br />    }<br />    url += temp;<br />    window.location.href=url; //url是我们导出数据的地址,上面的处理都只是进行参数的处理<br />}

//下面我们来看下导出数据的action,暂且命名为controller层的 actionExportData,其中CommonFunc是我们引入的全局性质的公共方法

 

use common\components\CommonFunc;<br />    /**<br />     * @DESC 数据导出<br />     */<br />    public function actionExportData ()<br />    {<br />        $where = '1';<br />        $temp = '';<br />        if ($_GET)<br />        {<br />            foreach ($_GET as $k => $v)<br />            {<br />                if ($k == 'start_time')<br />                {<br />                    $t = date('Y-m-d', strtotime($v)).' 00:00:00';<br />                    $temp .= 'create_time >= \''. $t . '\' AND ';<br />                }<br />                elseif ($k == 'end_time')<br />                {<br />                    $t = date('Y-m-d', strtotime($v)).' 23:59:59';<br />                    $temp .= 'create_time <= \''. $t . '\' AND ';<br />                }<br />                else<br />                {<br />                    $temp .= $k . '=\'' . $v . '\' AND ';<br />                }<br />            }<br />            $temp = rtrim($temp, ' AND');<br />        }<br /><br />        if ($temp) $where .= ' AND '.$temp;<br />        <br />        //查询数据<br />        $data = ......<br /><br />        if ($data)<br />        {<br />            //数据处理<br />        }<br />        <br />        $header = ['id', '用户账号', '创建时间']; //导出excel的表头<br /><br />        CommonFunc::exportData($data, $header, '表头', '文件名称');<br />    }

 

上面CommonFunc::expertData方法是我们底层扩展php-excel类封装的公共方法,这里才是我们要说的关键,关于 PHPExcel类文件大家可自行下载

No1. 我们走了一个小的弯,分享给大家看看

CommonFunc::expertData方法如下:

 

   /**<br />     *  @DESC 数据导出 <br />     *  @notice max column is z OR 26,overiload will be ignored<br />     *  @notice 缺点:导出数据的列数大于26时报错<br />     *  @example <br />     *  $data = [1, '小明', '25'];<br />     *  $header = ['id', '姓名', '年龄'];<br />     *  Myhelpers::exportData($data, $header);<br />     *  @return void, Browser direct output<br />     */<br />    public static function exportData ($data, $header, $title = 'simple', $filename = 'data')<br />    {<br />        //require relation class files<br />        require(Yii::getAlias([email&#160;protected]').'/components/phpexcel/PHPExcel.php');<br />        require(Yii::getAlias([email&#160;protected]').'/components/phpexcel/PHPExcel/Writer/Excel2007.php');<br />    <br />        if (!is_array ($data) || !is_array ($header)) return false;<br /><br />        //列数<br />        $captions = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];<br /><br />        $objPHPExcel = new \PHPExcel();<br /><br />        // Set properties<br />        $objPHPExcel->getProperties()->setCreator("Maarten Balliauw");<br />        $objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw");<br />        $objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document");<br />        $objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document");<br />        $objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.");<br /><br />        // Add some data<br />        $objPHPExcel->setActiveSheetIndex(0);<br /><br />        //添加头部<br />        $cheader = count($header);<br />        for ($ci = 1; $ci <= $cheader; $ci++) <br />        {<br />            if ($ci > 25) break; <br />            $objPHPExcel->getActiveSheet()->SetCellValue($captions[$ci-1].'1', $header[$ci-1]);<br />        }<br /><br />        //添加数据<br />        $i = 2;<br />        $count = count($data);<br /><br />        foreach ($data as $v)<br />        {<br />            $j = 0;<br />            foreach ($v as $_k => $_v)<br />            {<br />                $objPHPExcel->getActiveSheet()->SetCellValue($captions[$j].$i, $_v);<br />                $j++;<br />            }<br />            if ($i <= $count)<br />            {<br />                $i ++;<br />            }<br />        }<br /><br />        // Rename sheet<br />        $objPHPExcel->getActiveSheet()->setTitle($title);<br /><br />        // Save Excel 2007 file<br />        $objWriter = new \PHPExcel_Writer_Excel2007($objPHPExcel);<br /><br />        header('Pragma:public');<br />        header("Content-Type:application/x-msexecl;name=\"{$filename}.xls\"");<br />        header("Content-Disposition:inline;filename=\"{$filename}.xls\"");<br /><br />        $objWriter->save('php://output');<br />    <br />    }

 

下面是最终的解决方案,也是非常实用的数据导出方案

/**<br />     *  @DESC 数据导<br />     *  @notice 解决了上面导出列数过多的问题<br />     *  @example <br />     *  $data = [1, '小明', '25'];<br />     *  $header = ['id', '姓名', '年龄'];<br />     *  Myhelpers::exportData($data, $header);<br />     *  @return void, Browser direct output<br />     */<br />    public static function exportData ($data, $header, $title = 'simple', $filename = 'data')<br />    {<br />        //require relation class files<br />        require(Yii::getAlias([email&#160;protected]').'/components/phpexcel/PHPExcel.php');<br />        require(Yii::getAlias([email&#160;protected]').'/components/phpexcel/PHPExcel/Writer/Excel2007.php');<br />    <br />        if (!is_array ($data) || !is_array ($header)) return false;<br /><br />        $objPHPExcel = new \PHPExcel();<br /><br />        // Set properties<br />        $objPHPExcel->getProperties()->setCreator("Maarten Balliauw");<br />        $objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw");<br />        $objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document");<br />        $objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document");<br />        $objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.");<br /><br />        // Add some data<br />        $objPHPExcel->setActiveSheetIndex(0);<br /><br />        //添加头部<br />        $hk = 0;<br />        foreach ($header as $k => $v)<br />        {<br />            $colum = \PHPExcel_Cell::stringFromColumnIndex($hk);<br />            $objPHPExcel->setActiveSheetIndex(0) ->setCellValue($colum.'1', $v);<br />            $hk += 1;<br />        }<br /><br />        $column = 2;<br />        $objActSheet = $objPHPExcel->getActiveSheet();<br />        foreach($data as $key => $rows)  //行写入<br />        {<br />            $span = 0;<br />            foreach($rows as $keyName => $value) // 列写入<br />            {<br />                $j = \PHPExcel_Cell::stringFromColumnIndex($span);<br />                $objActSheet->setCellValue($j.$column, $value);<br />                $span++;<br />            }<br />            $column++;<br />        }<br /><br />        // Rename sheet<br />        $objPHPExcel->getActiveSheet()->setTitle($title);<br /><br />        // Save Excel 2007 file<br />        $objWriter = new \PHPExcel_Writer_Excel2007($objPHPExcel);<br /><br />        header('Pragma:public');<br />        header("Content-Type:application/x-msexecl;name=\"{$filename}.xls\"");<br />        header("Content-Disposition:inline;filename=\"{$filename}.xls\"");<br /><br />        $objWriter->save('php://output');<br />    <br />    }
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the difference between unset() and session_destroy()?What is the difference between unset() and session_destroy()?May 04, 2025 am 12:19 AM

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

What is sticky sessions (session affinity) in the context of load balancing?What is sticky sessions (session affinity) in the context of load balancing?May 04, 2025 am 12:16 AM

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

What are the different session save handlers available in PHP?What are the different session save handlers available in PHP?May 04, 2025 am 12:14 AM

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

What is a session in PHP, and why are they used?What is a session in PHP, and why are they used?May 04, 2025 am 12:12 AM

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

Explain the lifecycle of a PHP session.Explain the lifecycle of a PHP session.May 04, 2025 am 12:04 AM

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

What is the difference between absolute and idle session timeouts?What is the difference between absolute and idle session timeouts?May 03, 2025 am 12:21 AM

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

What steps would you take if sessions aren't working on your server?What steps would you take if sessions aren't working on your server?May 03, 2025 am 12:19 AM

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

What is the significance of the session_start() function?What is the significance of the session_start() function?May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.