Yii中使用PHPExcel导出Excel的方法
程序员文章站
2023-10-15 10:06:05
本文实例讲述了yii中使用phpexcel导出excel的方法。分享给大家供大家参考。具体分析如下:
最近在研究php的yii框架,很喜欢,碰到导出excel的问题,研究...
本文实例讲述了yii中使用phpexcel导出excel的方法。分享给大家供大家参考。具体分析如下:
最近在研究php的yii框架,很喜欢,碰到导出excel的问题,研究了一下,就有了下面的方法.
1、首先在cofig/main.php中添加对phpexcel的引用,我的方法是这样,代码如下:
复制代码 代码如下:
// autoloading model and component classes
'import'=>array(
/*'application.modules.srbac.controllers.sbasecontroller',*/
'application.models.*',
'application.components.*',
'application.extensions.phpexcel.*',
),
'import'=>array(
/*'application.modules.srbac.controllers.sbasecontroller',*/
'application.models.*',
'application.components.*',
'application.extensions.phpexcel.*',
),
2、当然要记得将phpexcel整个目录复制到项目的 "protected/extensions/" 目录下面.
3、按照下面的代码修改phpexcel代码目录里的autoloader.php文件,代码如下:
复制代码 代码如下:
public static function register() {
/*if (function_exists('__autoload')) {
// register any existing autoloader function with spl, so we don't get any *es
spl_autoload_register('__autoload');
}
// register ourselves with spl
return spl_autoload_register(array('phpexcel_autoloader', 'load'));*/
$functions = spl_autoload_functions();
foreach ( $functions as $function)
spl_autoload_unregister($function);
$functions = array_merge(array(array('phpexcel_autoloader','load')),$functions);
foreach ( $functions as $function)
$x = spl_autoload_register($function);
return $x;
} // function register()
/*if (function_exists('__autoload')) {
// register any existing autoloader function with spl, so we don't get any *es
spl_autoload_register('__autoload');
}
// register ourselves with spl
return spl_autoload_register(array('phpexcel_autoloader', 'load'));*/
$functions = spl_autoload_functions();
foreach ( $functions as $function)
spl_autoload_unregister($function);
$functions = array_merge(array(array('phpexcel_autoloader','load')),$functions);
foreach ( $functions as $function)
$x = spl_autoload_register($function);
return $x;
} // function register()
上面的函数中,注释掉的是原有的代码.
4、下面的代码是输出excel,以及一些常用的属性设置,在你的controller中,代码如下:
复制代码 代码如下:
$objectphpexcel = new phpexcel();
$objectphpexcel->setactivesheetindex(0);
ob_end_clean();
ob_start();
header('content-type : application/vnd.ms-excel');
header('content-disposition:attachment;filename="'.'xiaoqiang-'.date("ymj").'.xls"');
$objwriter= phpexcel_iofactory::createwriter($objectphpexcel,'excel5');
$objwriter->save('php://output');
$objectphpexcel->setactivesheetindex(0);
ob_end_clean();
ob_start();
header('content-type : application/vnd.ms-excel');
header('content-disposition:attachment;filename="'.'xiaoqiang-'.date("ymj").'.xls"');
$objwriter= phpexcel_iofactory::createwriter($objectphpexcel,'excel5');
$objwriter->save('php://output');
希望本文所述对大家基于yii框架的php程序设计有所帮助。
上一篇: C#之简易计算器设计