当前位置:首页 > PHP教程 > php高级应用 > 列表

Yii中使用PHPExcel导出Excel实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-10 14:18:55 浏览: 评论:0 

文章来给大家介绍在yii框架中利用PHPExcel插件来快速实例导出excel数据的具体方法,有在使用yii的同学不防进入参考一下.

最近在研究PHP的Yii框架,很喜欢,碰到导出Excel的问题,研究了一下,就有了下面的方法.

1、首先在cofig/main.php中添加对PHPExcel的引用,我的方法是这样,代码如下:

  1. // autoloading model and component classes 
  2.     'import'=>array
  3.         /*'application.modules.srbac.controllers.SBaseController',*/        
  4.         'application.models.*'
  5.         'application.components.*'
  6.         'application.extensions.phpexcel.*'
  7.  
  8.     ),  

2、当然要记得将PHPExcel整个目录复制到项目的 "protected/extensions/" 目录下面.

3、按照下面的代码修改PHPExcel代码目录里的Autoloader.php文件,代码如下:

  1. public static function Register() { 
  2. /*if (function_exists('__autoload')) { 
  3.             //    Register any existing autoloader function with SPL, so we don't get any clashes 
  4.             spl_autoload_register('__autoload'); 
  5.         } 
  6.         //    Register ourselves with SPL 
  7.         return spl_autoload_register(array('PHPExcel_Autoloader', 'Load'));*/ 
  8.         $functions = spl_autoload_functions(); 
  9.          //开源代码phpfensi.com 
  10.             foreach ( $functions as  $function
  11.                 spl_autoload_unregister($function); 
  12.             $functions = array_merge(array(array('PHPExcel_Autoloader','Load')),$functions); 
  13.             foreach ( $functions as $function
  14.                 $x = spl_autoload_register($function); 
  15.             return $x
  16.  
  17.     }    //    function Register() 

上面的函数中,注释掉的是原有的代码.

4、下面的代码是输出Excel,以及一些常用的属性设置,在你的Controller中,代码如下:

  1. $objectPHPExcel = new PHPExcel(); 
  2. $objectPHPExcel->setActiveSheetIndex(0); 
  3.  
  4. ob_end_clean(); 
  5. ob_start(); 
  6.  
  7. header('Content-Type : application/vnd.ms-excel'); 
  8. header('Content-Disposition:attachment;filename="'.'xiaoqiang-'.date("Ymj").'.xls"'); 
  9. $objWriter= PHPExcel_IOFactory::createWriter($objectPHPExcel,'Excel5'); 
  10. $objWriter->save('php://output');

Tags: Yii导出Excel PHPExcel导出代码

分享到: