Table of Contents
yii2 数据导出 excel导出以及导出数据时列超过26列时解决办法,yii226列
Home php教程 php手册 yii2 数据导出 excel导出以及导出数据时列超过26列时解决办法,yii226列

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

Jun 13, 2016 am 08:41 AM
phpexcel

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

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

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

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

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

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

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

php controller

 

1

//传参导出<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 />}

Copy after login

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

php 输入页面上的html按钮

1

<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>

Copy after login

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

1

//数据导出<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 />}

Copy after login

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

1

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 />    }

Copy after login

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

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

CommonFunc::expertData方法如下:

1

/**<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('@common').'/components/phpexcel/PHPExcel.php');<br />        require(Yii::getAlias('@common').'/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 />    }

Copy after login

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

1

/**<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('@common').'/components/phpexcel/PHPExcel.php');<br />        require(Yii::getAlias('@common').'/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 />    }

Copy after login
Statement of this Website
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

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 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Complete Guide: How to process Excel files using php extension PHPExcel Complete Guide: How to process Excel files using php extension PHPExcel Jul 28, 2023 pm 10:01 PM

Complete Guide: How to Process Excel Files Using PHP Extension PHPExcel Introduction: Excel files are often used as a common format for data storage and exchange when processing large amounts of data and statistical analysis. Using the PHP extension PHPExcel, we can easily read, write and modify Excel files to effectively process Excel data. This article will introduce how to use the PHP extension PHPExcel to process Excel files and provide code examples. 1. Install PHPExc

PHP development: Use PHPExcel to process Excel files PHP development: Use PHPExcel to process Excel files Jun 15, 2023 pm 03:45 PM

With the advent of the digital age, data has become the most important part of our daily lives and work, and Excel files have become one of the important tools for data processing. I believe that many PHP developers will often encounter the use of Excel files for data processing and operations at work. This article will introduce you to the methods and precautions for using the PHPExcel library to process Excel files. What is PHPExcel? PHPExcel is a PHP class

How to use phpexcel to convert Excel files to CSV files and open them How to use phpexcel to convert Excel files to CSV files and open them Mar 27, 2023 pm 04:16 PM

​PHPEXCEL is an excellent PHP class library for reading and writing Excel files. It provides a very sufficient API that allows us to use PHP to read and write Excel files. Sometimes, we need to convert Excel files into CSV files for use on some occasions. So, this article mainly describes how to use the PHPEXCEL class library to convert Excel files into CSV files and open them.

Why phpexcel has become the focus of PHP developers Why phpexcel has become the focus of PHP developers Mar 27, 2023 pm 06:15 PM

PHPExcel is an open source PHP library for processing Microsoft Excel files. It can read, create, modify and save Excel files. It is a powerful and highly customizable tool that can be used to handle tasks such as data analysis, report generation, data import and export, etc. In this article, we will introduce why PHPExcel has become the focus of PHP developers.

How to use PHPExcel to process Excel files? How to use PHPExcel to process Excel files? Jun 01, 2023 pm 02:01 PM

PHPExcel is an open source PHP library for processing Microsoft Excel (.xls and .xlsx) files. It can read, write and operate Excel files, and provides a wealth of functions and methods. Using the PHPExcel library in PHP projects, you can quickly and easily process Excel files and implement functions such as data import, export and data processing. This article will introduce how to use PHPExcel to process Excel files. 1. To install PHPExcel, use

Create Excel files using PHP and PHPExcel Create Excel files using PHP and PHPExcel May 11, 2023 am 08:40 AM

In today's era of rapid information transfer, data processing and storage have become increasingly important. The use of Excel tables is the first choice for many people because Excel tables can integrate various data and can be easily analyzed and processed. In order to complete the creation of Excel tables more efficiently, we can use two powerful tools, PHP and PHPExcel. In this article, we will introduce how to create Excel files using PHP and PHPExcel. 1. Install PHPExcel first

PHP development tips: How to use PHPExcel and PHPExcel_IOFactory to operate MySQL database PHP development tips: How to use PHPExcel and PHPExcel_IOFactory to operate MySQL database Jul 02, 2023 pm 02:28 PM

PHP development tips: How to use PHPExcel and PHPExcel_IOFactory to operate MySQL database Overview: In web development, processing Excel files is a common and important task. PHPExcel is a powerful and easy-to-use PHP library that can help us read and write Excel files. This article will introduce how to use PHPExcel and PHPExcel_IOFactory libraries to operate MySQL database. step 1

PHP development skills: How to use PHPExcel to operate MySQL database PHP development skills: How to use PHPExcel to operate MySQL database Jul 02, 2023 pm 12:21 PM

PHP development skills: How to use PHPExcel to operate MySQL database. With the booming development of the Internet, a large amount of data is stored in the database, and operations such as import, export, and processing are required. In PHP development, PHPExcel is a powerful library that can simplify the interaction with Excel files and realize the import and export of data. This article will introduce how to use PHPExcel to operate the MySQL database and implement data import and export functions. Installation and configuration of PHPExcel

See all articles