中山php|最优网络中山做网站 中山php建站

最优良人

Posts Tagged With: word

php生成excel或者word文档最简单的方法

2011/09/29 at 16:29 » Comments (3,306)

以下代码实现简单输出表格或者word文档,如生成一个两列的excel文档,改动相应文件头为 header("Content-type:application/vnd.msword"); header("Content-Disposition:filename=test.doc"); 就可以输出.doc .xls等文件格式了 header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=test.xls"); echo "test1\t"; echo "test2\t\n"; //两列之后换行 echo "test1\t"; echo "test2\t\n"; echo "test1\t"; echo "test2\t\n"; echo "test1\t"; echo "test2\t\n"; echo "test1\t"; echo "test2\t\n"; echo "test1\t"; echo "test2\t\n"; 附一个文件格式对应的数组 $mime_types = array( 'gif' => 'image/gif', 'jpg' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'jpe' => 'image/jpeg', 'bmp' => 'image/bmp', 'png' => 'image/png', 'tif' => ...more »