码迷,mamicode.com
首页 > Web开发 > 详细

PHP生成excle文件

时间:2018-12-30 17:30:58      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:***   eval   output   enc   table   style   color   src   cache   


excle_word.php


    
    /***
    * 生成excle文件
    ***/
    $time = time(); 
    $filename = date("Y年m月d日h点m分s秒", $time).'问卷数据';
    $rows =  Sp_Looks_Vote::downvote();
    $file = $filename.".csv";
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');  
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');

    $tabletitle .= "购买地址,常常购买,喜欢模特,内容如何,印象如何,是否购买,感觉如何,购买方式,购买方式建议,吸引点,改进建议";

    $conter = iconv('utf-8','gbk',$tabletitle)."\n";

    echo $conter;die;    /***
    * 生成word文件
    ***/

    header("Content-Type:   application/msword");        
    header("Content-Disposition:   attachment;   filename=doc.doc");        
    header("Pragma:   no-cache");        
    header("Expires:   0");        

    $output    =   '<table border="1" cellspacing="2" cellpadding="2"  width="90%" align="center">';        
    $output   .=   '<tr bgcolor="#cccccc"><td   align="center">图片</td></tr>';        
    $output   .=   '<tr bgcolor="#f6f7fa"><td><span style="color:#FF0000;"><strong>下面是一张图片</strong></span& gt;</td></tr>';        
    $output   .=   '<tr><td align="center"><img src="http://zi.csdn.net/48260_2.gif"></td></tr>';        
    $output   .=   '</table>';      echo   $output;   
  ?>

PHP生成excle文件

标签:***   eval   output   enc   table   style   color   src   cache   

原文地址:https://www.cnblogs.com/datiangou/p/10199716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!