文章分类 Classification
php保存word文档
稿件来源: 阳光企业网站管理系统 撰稿作者: 太阳光 发表日期: 2014-04-14 阅读次数: 38 查看权限: 游客查看
php保存word文档
<?php header("Content-type: text/html; charset=utf-8"); class word{ function start(){ ob_start(); echo '<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><meta http-equiv=Content-Type content="text/html; charset=utf-8"><xml><w:WordDocument><w:View>Print</w:View></xml></head><body>'; } function save($path){ echo "</body></html>"; $data = ob_get_contents(); ob_end_clean(); $this->wirtefile($path,$data); } function wirtefile ($fn,$data){ $fp=fopen($fn,"wb"); fwrite($fp,$data); fclose($fp); } } $html = ' <table width="100%" border=1 cellspacing=0 cellpadding=0 style="text-align:center;padding:4pt;font-size:10pt;font-family:宋体;border-collapse:collapse;border:none;background-color:#444"><tr><td colspan=4 valign=top style="border:solid #000 1px;background-color:#fff"><h2>php导出word保存在服务器示例</h2></td></tr></table> '; $word = new word(); $word->start(); echo iconv("UTF-8","UTF-8",$html); $word->save("word.doc"); ob_flush();//每次执行前刷新缓存 flush(); ?>
关键词: word文档,导出word 编辑时间: 2014-04-14 15:25:42
0
高兴0
支持0
搞笑0
不解0
谎言0
枪稿0
震惊0
无奈0
无聊0
反对0
愤怒
0%(0)
0%(0)
- 中搜索:php保存word文档
- 中搜索:php保存word文档
- 暂无评论
文章图片 article Pictrue
网友评论