如何在symfony中导出为CSV文件中的数据
2015-01-24信息快讯网
public function executeRegistrantsToCsv(){ $id = $this->getRequestParameter('id'); $c = new Criteria(); $c->add(RegistrantPeer::EVENT_ID, $id); $c->add(RegistrantPeer::STATUS, 1); $this->aObjReg = RegistrantPeer::doSelect($c); $this->forward404Unless($this->aObjReg); $this->setlayout('csv'); $this->getResponse()->clearHttpHeaders(); $this->getResponse()->setHttpHeader('Content-Type', 'application/vnd.ms-excel'); $this->getResponse()->setHttpHeader('Content-Disposition', 'attachment; filename=registrants_report_event_' . $id . '.csv'); }
在模板registrantsToCsvSuccess.php:
Title,Name,Email,Phone,Organisation,State,City,Country,Login Date,IpAddress <? foreach($aObjReg as $r): ?> <?= $r->getTitle() ?>,<?= $r->getName() ?>,<?= $r->getEmail() ?>,<?= $r->getPhone() ?>,<?= $r->getOrganisation() ?>,<?= $r->getState() ?>,<?= $r->getCity() ?>,<?= $r->getCountry() ?>,<?= $r->getLoginDate() ?>,<?= $r->getIpAddress() ?>, <? endforeach ?>
in the templates/csv.php:
<?php echo $sf_data->getRaw('sf_content') ?>
From: http://blog.baddog.net.au/sonius/steve-sonius/how-to-export-data-as-a-csv-file-in-symfony/
If it doesn't work, try this:http://blog.baddog.net.au/sonius/steve-sonius/how-to-export-data-as-an-xls-or-csv-file-from-the-admin-generator-in-symfony-1-4/
高性能PHP框架Symfony2经典入门教程
基于Zend的Config机制的应用分析
PHP5中Cookie与 Session使用详解
php中serialize序列化与json性能测试的示例分析
基于python发送邮件的乱码问题的解决办法
关于Iframe如何跨域访问Cookie和Session的解决方法
APACHE的AcceptPathInfo指令使用介绍
在windows服务器开启php的gd库phpinfo中未发现
PHP fopen 读取带中文URL地址的一点见解
php获取ip的三个属性区别介绍(HTTP_X_FORWARDED_FOR,HTTP_VIA,REMOTE_ADDR)
PHP中使用foreach和引用导致程序BUG的问题介绍
PHP fgetcsv 定义和用法(附windows与linux下兼容问题)
Linux fgetcsv取得的数组元素为空字符串的解决方法
Admin generator, filters and I18n
php中时间轴开发(刚刚、5分钟前、昨天10:23等)
linux iconv方法的使用
linux系统上支持php的 iconv()函数的方法
php json_encode奇怪问题说明
php中json_encode中文编码问题分析
PHP pathinfo()获得文件的路径、名称等信息说明
php正则表达式(regar expression)
兼容firefox,chrome的网页灰度效果
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享
PHP FOR MYSQL 代码生成助手(根据Mysql里的字段自动生成类文件的)
php中用foreach来操作数组的代码
PHP导出MySQL数据到Excel文件(fputcsv)
php fputcsv命令 写csv文件遇到的小问题(多维数组连接符)