zoukankan      html  css  js  c++  java
  • PHP导出word,CVS,PDF

    WORD:

    <?php
    header("Cache-Control: no-cache, must-revalidate");
    header("Pragma: no-cache");
    //有了这些,可以把带html标签的html源码导入到word里,并且可以保持html的样式。
    /* 
    <STYLE>
    BR.page { page-break-after: always }
    </STYLE>
    在<head>部分加这个是为了实现打印的时候分页
     */
    $wordStr = '<html xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:w="urn:schemas-microsoft-com:office:word"
    xmlns="http://www.w3.org/TR/REC-html40">
    <head>
    <STYLE>
    BR.page { page-break-after: always }
    </STYLE>
    </head><body>';
    
        $wordStr = "<b>hello</b><p>this is html code</p>";
    
        $wordStr .= '</body></html>';
        //防止导出乱码
        $file = iconv("utf-8", "GBK", $filename);
    
        header("Content-Type: application/doc");
        header("Content-Disposition: attachment; filename=" . $file . ".doc");
        echo $wordStr;
    ?>

    CVS:

    <?php
    header("Content-Disposition: attachment; filename=邮寄地址.csv");
    echo "姓名,性别,年龄,电话
    张三,男,23,15010125818";
    ?>

    注:echo中的逗号是每个列的分割标识符, 则是换行。

    还有如下可参考:

    header("Content-type:application/vnd.ms-excel");
    header("Content-Disposition:filename=test.xls");

    PDF:

    <?php
    header("Content-type:application/pdf");
    
    // 文件将被称为 downloaded.pdf
    header("Content-Disposition:attachment;filename='downloaded.pdf'");
    
    // PDF 源在 original.pdf 中
    readfile("original.pdf");
    ?>
    
    <html>
    <body>
    
    ...
    ...
  • 相关阅读:
    TestNg JAVA 自动化单元测试框架Demo
    Python Unittest 自动化单元测试框架Demo
    Mac 安装工具包brew
    Mac 终端提示You have not agreed to the Xcode license agreements
    查看 ios 真机调试log,导出log
    Python WxPython 的安装以及使用
    RTMP协议抓包详解
    流媒体协议地址获取 rtmp
    手游-放开那三国socket协议分析
    jquery.tochart.js
  • 原文地址:https://www.cnblogs.com/thinksasa/p/3504153.html
Copyright © 2011-2022 走看看