gpt4 book ai didi

cakephp - 使用 xlsHelper 导出 Excel 文件

转载 作者:行者123 更新时间:2023-12-01 05:22:03 25 4
gpt4 key购买 nike

我正在使用 cakephp 的 xlsHelper 以 excel 格式导出。它在所有主要浏览器中都运行良好,并且在除“mac”操作系统之外的所有操作系统中打开文件?

最佳答案

可以帮助你..

<?php 
$this->layout="";
$filename=strtotime("now");
header ("Expires: 0");
header ("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
header ("Content-type: application/vnd.ms-excel");
header ("Content-Disposition: attachment; filename=".$filename.".xls");
header ("Content-Description: Generated Report" );

// echo 'Number of Rows::'."\t" . count($test)."\n";
// echo "\n";
echo 'Id' . "\t" .
'EnrollmentId' . "\t" .
'IDS' . "\t" .
'sysreq' . "\t" .
'sysproc' . "\t" .
'Request' . "\t" .
'Response' . "\t" .
'Created' . "\n";
foreach($test as $val):
echo $val['abc']['id']. "\t" .
$val['xyz']['enrollment_id']. "\t" .
$val['bca']['IDS']. "\t" .
$val['mca']['_sysreq']. "\t" .
$val['car']['_sysproc']. "\t" .
$val['azx']['SYSBATCHNO']. "\t" .
$val['tyu']['MSGS']. "\t" .
$val['wer']['created']. "\n";
endforeach;

?>

关于cakephp - 使用 xlsHelper 导出 Excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15895278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com