header(Content-type:application/msword);
$fp=fopen("xxx.doc",r);
$file=file($fp);
foreach($file as$k=>;$v){
echo $v;
}
<?php
$word = new COM("word.application") ordie("无法定位WORD安装路径!");
print "加载WORD( 版本:)成功,已经保存在您的硬盘上了。n";
//将其置前
$word->;Visible = 1;
//打开一个空文档
$word->;Documents->;Add();
//随便做些事情
$word->;Selection->;TypeText("这是一个在PHP中调用COM的测试。");
//$word->;Selection->;TypeText("Thisis a test.。");
$word->;Documents[1]->;SaveAs("test.doc");
//关闭 word
$word->;Quit();
//释放对象
$word->;Release();
$word = null;
?>
使用表单上传word文件到数据库 然后打开数据库的word。
第二种 是把word 转换为PDF 用world转换工具 ,然后在吧PDF导入到页面上
<?PHP
// 创建一个新的pdf文档句柄
$pdf = pdf_new();
// 打开一个文件
pdf_open_file($pdf, "pdftest.pdf");
// 开始一个新页面(a4)
pdf_begin_page($pdf, 595, 842);
// 得到并使用字体对象
$arial = pdf_findfont($pdf, "arial","host", 1);
pdf_setfont($pdf, $arial, 10);
// 输出文字
pdf_show_xy($pdf, "this is an exam ofpdf documents, it is a good lib,",50, 750);
pdf_show_xy($pdf, "if you like,pleasetry yourself!", 50, 730);
// 结束一页
pdf_end_page($pdf);
// 关闭并保存文件
pdf_close($pdf);
?>
欢迎光临 飞克网 (http://feikechina.com/) | Powered by Discuz! X3.2 |