公司的招聘网站为了做导出简历的功能,上网查了好多资料,终于找到了一个简便实用的方法。
原理:指定文档类型,文件名。输出HTML代码,So easy!
php导出word文档,实例代码如下:
<?php
header("Content-Type:
header("Content-Disposition:
header("Pragma:
header("Expires:
$html
$html .= '<trbgcolor="#cccccc"><tdalign="center">博客</td></tr>';
$html .= '<trbgcolor="#f6f7fa"><td><spanstyle="color:#FF0000;"><strong>PHP将网页代码导出word文档</strong></span></td></tr>';
$html .= '<tr><tdalign="center"><imgsrc="/upload/header.gif"></td></tr>';//自定义图片文件
$html .= '</table>';
echo
?>