Home php教程 PHP源码 基于phpexcel的php导出excel类,附注释和调用方法

基于phpexcel的php导出excel类,附注释和调用方法

Jun 08, 2016 pm 05:21 PM
array data gt nbsp this

以前我们写过一个 HP通过链式操作将数据输出excel(csv)格式,最近项目又要导出excel,由于项目中要导出excel的地方太多,因此写个类便于管理使用。

<script>ec(2);</script>

以前我们写过一个PHP通过链式操作将数据输出excel(csv)格式,http://www.111cn.net/phper/php-cy/72796.htm,现在我们来学习写一个php基于phpexcel制作的导出excel类

 代码如下 复制代码
/*
*@使用方法。
*引入类库。
*$excel = news excelC();
*$excel->fileName = '文件名称';//设置文件名称,默认为时间戳
*$excel->format = '2007';//文件类型,默认为2007,其他为excel5
*$record = array(
    'delKey'=>array('id','addTime','status'),//如果数据$data中有不需要显示的列,可以在此说明。删除不需要导出的键值
    'sort'          =>array(
                    'keyName'=>array('subjectName','flag'),//按keyName列排序,如果不存在则不排序。
                    //'reorder'=>'DESC',//排序方式,DESC为倒序,ASC为正序。如果keyName存在则排序keyName,如果不存在则按数组的键名排序,如果reorder不存在则不排序
                ),//排序   如果sort存在则排序,否则不排序,如果keyName存在则按设置排序,如果不存在则按字符排序,如果reorder不存在或为空或为DES则正序,等于DESC为倒序。
    'excelStyle'    =>array(
                        'setName'=>'Arial',//字体样式
                        'setSize'=>'12',//字体大小
                    ),//表格全局样式
    'title'         =>array('tableName'=>'学科列表','center'=>true,'direction'=>'right','merge'=>'2','setSize'=>'30'),//标题,center垂直,direction为合并方向。right,left,up,down。 merge为合并几个单元格,setSize为字体大小
    'data'          =>array(
                        array('tableName'=>'科目名称','width'=>'30','setName'=>'宋体','setSize'=>'20','background'=>'red','textColor'=>'white','bold'=>true,'underline'=>true,'borderColor'=>'cyan','center'=>true,),
                        array('tableName'=>'学科','width'=>'50','center'=>true),//颜色表是:black,white,red,green,blue,yellow,magenta,cyan
                    ),//表名称 tableName为名称,width为表格宽度,setName为字体样式,background为背景颜色,textColor为字体颜色,bold为加粗,underline为下划线,borderColor为边框颜色.
    'merge'         =>array(
                        //'flag'=>array('keyword'=>'初','direction'=>'right','merge'=>'2'),merge的键值为需要处理数据数组的键值,keyword为如果存在此关键字才执行其他样式操作,如果keyword不存在则执行所有键值为flag的单元格。
                        'all'=>array('width'=>'30','setName'=>'宋体','setSize'=>'20','background'=>'red','textColor'=>'white','bold'=>true,'underline'=>true,'borderColor'=>'cyan','center'=>true,),
                    ),//
);//导出配置
 
 
*$excel->export($record,$data);//$record为导出配置,$data为数据库的数据,$data可以为数组,也可以为对象。
*
*
*
*/
$address = dirname(dirname(__FILE__)).'/PHPExcel';
include $address.'/PHPExcel.class.php';
include $address.'/PHPExcel/Writer/Excel2007.php';
include $address.'/PHPExcel/Writer/Excel5.php';
include $address.'/PHPExcel/IOFactory.php';
 
/****************************
*生成excel文档。
*/
 
class excelC {
    
    public $format = '2007';//转换格式,默认为2007版本,其他版本,请输入不是2007的数字
    
    public $fileName;//文件名称默认为时间戳。
    
    
    private $objExcel;
    
    private $letters;
    
    public function __construct()
    {
        $this->fileName = time();
        
        $this->fileTitle = '导出数据';
        
        $this->objExcel = new PHPExcel();
        $this->letters = $this->letter();
    }
    
    
    //导出excel的属性
    private function attribute(){
        
        
        $this->objExcel->getProperties()->setCreator("力达行有限公司");//创建人
        
        $this->objExcel->getProperties()->setLastModifiedBy("力达行有限公司");//最后修改人
        
        $this->objExcel->getProperties()->setTitle("导出数据");//标题
        
        $this->objExcel->getProperties()->setSubject("导出数据");//题目
        
        $this->objExcel->getProperties()->setDescription("数据导出");//描述
        
        $this->objExcel->getProperties()->setKeywords("office 导出");//关键字
        
        $this->objExcel->getProperties()->setCategory("excel");//种类
    }
    
    
    
    //设置表(如果只有一个sheet可以忽略该函数,将默认创建。)
    private function sheet(){
        
        $this->objExcel->setActiveSheetIndex(0);//设置当前的表
        
        $this->objExcel->getActiveSheet()->setTitle('excel');//设置表名称。
    }
    
    
    /***************************
    *导出excel
    *@attr $record为表头及样式设置
    *@attr $data为需要导出的数据
    */
    public function export($record=array(),$data=array()){
        if(!$data)return false;
        if(!is_array($record))return false;//表样式及其他设置
        
        //处理获取到的数据
        $data = $this->maniData($record,$data);
        
        //获取整体样式。
        $this->excelData($record,$data);
        
        
        //$this->objExcel->getActiveSheet()->setCellValue('A1', '季度');
        
        $this->down();//导出下载
    }
    
    
    /*
    *处理表格
    */
    private function excelData(&$record,&$data){
        $this->attribute();//设置属性
        $this->sheet();//设置表
        $this->whole($record);//设置整体样式
        $this->tableHeader($record);//设置表格头。
        $this->tableContent($record,$data);//设置表格
        $this->excelTitle($record,2);//设置标题
    }
    
    /*
    *设置表格整体样式
    */
    private function whole(&$record){
        if(!array_key_exists('excelStyle',$record))return false;
        
        $excelStyle = $record['excelStyle'];
        
        $default = $this->objExcel->getDefaultStyle();
        
        if(array_key_exists('setName',$excelStyle))
            $default->getFont()->setName($excelStyle['setName']);//设置字体样式
            
        if(array_key_exists('setSize',$excelStyle))
            $default->getFont()->setSize($excelStyle['setSize']);//设置字体大小
    }
    
    /*
    *设置标题
    */
    private function excelTitle($record,$num){
        $titleL = $this->letters[0];
        if(!array_key_exists('title',$record))return false;
        $this->appOintStyle($titleL ,1,$record['title']);
        
    }
    
    /*
    *设置表格头。
    */
    private function tableHeader($record){
        if(!array_key_exists('data',$record))return false;
        $objExcel = $this->objExcel;
        $letters = $this->letters;
        
        if(!is_array($record['data']))return false;
        
        $i = 0;
        $hang = 2;
        foreach($record['data'] as $k=>$v){
        
            $this->appOintStyle($letters[$i],$hang,$v);
                
            $i++;
        }
        
    }
    
    private function setCellValue($letter,$data){
    
        if(@$data)
            $this->objExcel->getActiveSheet()->setCellValue($letter, $data);//填充值
        
        return $this;
    }
    
    private function getColumnDimension($letter,$data){
    
        if(@$data)
            $this->objExcel->getActiveSheet()->getColumnDimension($letter)->setWidth($data);//设置宽度
            
        return $this;
    }
    
    private function setName($letter,$data){
    
        if(@$data)
            $this->objExcel->getActiveSheet()->getStyle($letter)->getFont()->setName($data);//设置字体
            
        return $this;
    }
    
    private function setSize($letter,$data){
    
        if(@$data)
             $this->objExcel->getActiveSheet()->getStyle($letter)->getFont()->setSize($data);//设置字体大小
            
        return $this;
    }
    
    private function background($letter,$data){
    
        if(@$data){
            $this->objExcel->getActiveSheet()->getStyle($letter)->getFill()->getStartColor()->setARGB($this->backColor($data));
            $this->objExcel->getActiveSheet()->getStyle($letter)->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID);//设置背景色样式,无样式将不显示背景色。
        }
            
        return $this;
    }
    
    private function textColor($letter,$data){
    
        if(@$data){
            $this->objExcel->getActiveSheet()->getStyle($letter)->getFont()->getColor()->setARGB($data);//字体颜色
        }
            
        return $this;
    }
    
    private function setBold($letter,$data){
    
        if(@$data){
            $this->objExcel->getActiveSheet()->getStyle($letter)->getFont()->setBold(true);//加粗
        }
            
        return $this;
    }
    
    private function setUnderline($letter,$data){
    
        if(@$data){
            $this->objExcel->getActiveSheet()->getStyle($letter)->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE);//下划线
        }
            
        return $this;
    }
    
    private function border($letter,$data){
    
        if(@$data){
            $styleThinBlackBorderOutline = array(
                           'borders' => array (
                                 'outline' => array (
                                       'style' => PHPExcel_Style_Border::BORDER_THIN, //设置border样式
                                       'color' => array ('argb' => $data),          //设置border颜色
                                ),
                          ),
                    );
            $this->objExcel->getActiveSheet()->getStyle($letter)->applyFromArray($styleThinBlackBorderOutline);
        }
            
        return $this;
    }
    
    /*
    *合并
    */
    private function mergeCells($letters,$hang,$direction,$merge){
        
        $merge = $merge-1;
        
        if($merge > 0 && $direction){
        
            //print_r($this->letters);
            $l = array_flip($this->letters);
            $ln = $l[$letters];
            
            switch ($direction)
            {
                case 'left':
                    $signal = $this->letters[($ln-$merge)].$hang.':'.$letters.$hang;
                break;
                case 'right':
                    $signal = $letters.$hang.':'.$this->letters[($ln+$merge)].$hang;
                break;
                case 'up':
                    $signal = $letters.($hang-$merge).':'.$letters.$hang;
                break;
                case 'down':
                    $signal = $letters.$hang.':'.$letters.($hang+$merge);
                break;
                default:
                    $signal = '';
            }
            
            if($signal){
                $this->objExcel->getActiveSheet()->mergeCells($signal);
            }
            
        }
        
        return $this;
    }
    
    /*
    *垂直居中
    */
    private function setVertical($letter,$data){
        
        if($data){
            $this->objExcel->getActiveSheet()->getStyle($letter)->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_CENTER);
            $this->objExcel->getActiveSheet()->getStyle($letter)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
        }
        return $this;
        
    }
    
    
    
    
    
    
    
    
    
    /*
    *设置颜色
    */
    private function backColor($color){
        
        $array = array(
            'black' => 'FF000000',   //  System Colour #1 - Black
            'white' => 'FFFFFFFF',   //  System Colour #2 - White
            'red'   => 'FFFF0000',   //  System Colour #3 - Red
            'green' => 'FF00FF00',   //  System Colour #4 - Green
            'blue'  => 'FF0000FF',   //  System Colour #5 - Blue
            'yellow'    => 'FFFFFF00',   //  System Colour #6 - Yellow
            'magenta'   => 'FFFF00FF',   //  System Colour #7- Magenta
            'cyan'  => 'FF00FFFF',   //  System Colour #8- Cyan
        );
        if(array_key_exists($color,$array)){
            return $array[$color];
        } else {
            return false;
        }
                    
    }
    /*
    *设置表
    */
    private function tableContent(&$record,&$data){
        $objExcel = $this->objExcel;
        $letters = $this->letters;
        
        if(array_key_exists('merge',$record))
            $merge = $record['merge'];
        else
            $merge = '';
                    
        $hang = 2;
        foreach($data as $k=>$v){
            $i=0;
            $hang++;
            
            foreach($v as $kk=>$vv){
                $this->setCellValue($letters[$i].$hang, $vv);//设置内容
                $this->Appoint($kk,$vv,$letters[$i],$hang,$merge);
                $i++;
            }
            
        }
    }
    
    /*
    *设置表指定样式
    */
    private function Appoint($kk,$vv,$letters,$hang,$merge){
        if(!$merge)return false;
        if(array_key_exists($kk,$merge)){
            $v = $merge[$kk];
            if(array_key_exists('keyword',$v)){
            
                if(strpos($vv,$v['keyword']) > -1){
                    $this->appOintStyle($letters,$hang,$v);
                }
                
            } else {
                $this->appOintStyle($letters,$hang,$v);
            }
        } else if(array_key_exists('all',$merge)){
            $v = $merge['all'];
            if(array_key_exists('keyword',$v)){
            
                if(strpos($vv,$v['keyword']) > -1){
                    $this->appOintStyle($letters,$hang,$v);
                }
                
            } else {
                $this->appOintStyle($letters,$hang,$v);
            }
        }
    }
    
    /*
    *终极样式
    */
    private function appOintStyle($letters,$hang,$v){
    
        $this
                ->setCellValue($letters.$hang,@$v['tableName'])
                ->getColumnDimension($letters,@$v['width'])
                ->setName($letters.$hang,@$v['setName'])
                ->setSize($letters.$hang,@$v['setSize'])
                ->background($letters.$hang,@$v['background'])
                ->textColor($letters.$hang,$this->backColor(@$v['textColor']))
                ->setBold($letters.$hang,@$v['bold'])
                ->setUnderline($letters.$hang,@$v['underline'])
                ->border($letters.$hang,$this->backColor(@$v['borderColor']))
                ->mergeCells($letters,$hang,@$v['direction'],@$v['merge'])
                ->setVertical($letters.$hang,@$v['center']);
    }
    
    /*
    *应为字母列表
    */
    public function letter(){
        return array('A','B','C','D','F','G','H','I','G','K','L','M','N','O','P','Q','R','S','T','U','V','W','H','Y','Z');
    }
    
    /****************************
    *处理数据,排序及删除字段
    */
    private function maniData($record,$data){
        if(!$data)return false;
        if(!is_array($record))return false;//表样式及其他设置
    
        $data = $this->objectToArray($data);//对象转数组
        
        $delKey = (array_key_exists('delKey',$record))?$record['delKey']:'';//是否删除关键字
        $sort = (array_key_exists('sort',$record))?$record['sort']:'';//是否排序
        $data = $this->delSort($data,$delKey,$sort);
        return $data;
    }
    
    /****************************
    *对象转数组
    */
    private function objectToArray($data){
        if(!$data)return false;
        $data = (array)$data;
        
        foreach($data as $k=>$v){
            if(is_object($v) || is_array($v)){
                $data[$k] = (array)$this->objectToArray($v);
            }
        }
        return $data;
    }
    
    /****************************
    *删除键值,并排序
    */
    private function delSort($data,$delKey='',$sort=''){
    
        if(!$data)return false;
        
        $array = array();
        foreach($data as $k=>$v){
        
            //删除数据中的某个键值
            $delData = $this->delData($v,$delKey);
            //按设定键值排序
            $sortData = $this->sortData($delData,$sort);
            $array[$k] = $sortData;
        }
        
        return $array;
        
    }
    
    /****************************
    *删除键值
    */
    public function delData($data,&$delKey){
        if($delKey){
            foreach($delKey as $delVal){
                if(array_key_exists($delVal,$data))//判断键值是否存在
                    unset($data[$delVal]);//清除键名。
            }
        }
        return $data;
    }
    
    /****************************
    *键值排序
    */
    public function sortData($data,&$sort){
        $array = array();
        if($sort){
            if(array_key_exists('keyName',$sort)){
                $keyName = $sort['keyName'];
                if(array_key_exists('reorder',$sort)){
                    if($sort['reorder'] == 'DESC'){
                        krsort($keyName);
                    } else if($sort['reorder'] == 'ASC'){
                        ksort($keyName);
                    }
                }
                foreach($keyName as $vn){
                    $array[$vn] = (array_key_exists($vn,$data))?$data[$vn]:'';
                }
            } else {
                if(array_key_exists('reorder',$sort)){
                    if($sort['reorder'] == 'DESC'){
                        krsort($data);
                    } else if($sort['reorder'] == 'ASC'){
                        ksort($data);
                    }
                    $array = $data;
                }
            }
            
        }
        return $array;
    }
    
    
    
    //导出下载
    private function down(){
        
        if($this->format == '2007'):
            header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
            $excel = 'Excel2007';
        else:
            header('Content-Type: application/vnd.ms-excel');
            $excel = 'Excel5';
        endif;
        
        header("Content-Disposition: attachment; filename="$this->fileName"");
        header('Cache-Control: max-age=0');
        
        $objWriter = PHPExcel_IOFactory::createWriter($this->objExcel, $excel);
 
        $objWriter->save('php://output');
        
    }
}
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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Solution: Your organization requires you to change your PIN Solution: Your organization requires you to change your PIN Oct 04, 2023 pm 05:45 PM

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

How to adjust window border settings on Windows 11: Change color and size How to adjust window border settings on Windows 11: Change color and size Sep 22, 2023 am 11:37 AM

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

How to change title bar color on Windows 11? How to change title bar color on Windows 11? Sep 14, 2023 pm 03:33 PM

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

OOBELANGUAGE Error Problems in Windows 11/10 Repair OOBELANGUAGE Error Problems in Windows 11/10 Repair Jul 16, 2023 pm 03:29 PM

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

How to enable or disable taskbar thumbnail previews on Windows 11 How to enable or disable taskbar thumbnail previews on Windows 11 Sep 15, 2023 pm 03:57 PM

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Display scaling guide on Windows 11 Display scaling guide on Windows 11 Sep 19, 2023 pm 06:45 PM

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

10 Ways to Adjust Brightness on Windows 11 10 Ways to Adjust Brightness on Windows 11 Dec 18, 2023 pm 02:21 PM

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

See all articles