php word生成pdf实例,php Word成功转PDF

一、配置环境

(1)配置php.ini

添加:extension=php_com_dotnet.dll

com.allow_dcom = true  // 去掉号,改为true

重启环境

(2) 安装:microsoft  office 2010

(3)配置office组件服务

按 win+R 快捷键进入运行菜单,输入 Dcomcnfg

找到:     [组件服务] —— [计算机]—— [我的电脑] —— [DCOM配置] ——[Microsoft Wrord 97-2003文档]

如果没找到(Microsoft Wrord 97-2003文档):

按 win+R 快捷键进入运行菜单

输入:mmc -32

[文件]——[添加或删除管理单元]——[组件服务](从可用管理单元,添加到所选管理单元,点击:确定)

添加完以后,在控制台根节点下,找到[Microsoft Wrord 97-2003文档],右键设置属性,设置“标识”为:交互式用户

f1c7eaec39be520475fd1617b66aa719.png

二、编写程序

word2pdf();

function word2pdf()

{

$filenamedoc = dirname(__FILE__)."/index.docx";

$filenamepdf = dirname(__FILE__)."/index.pdf";

$dd = $word = new COM("Word.Application") or die ("Could not initialise Object.");

// set it to 1 to see the MS Word window (the actual opening of the document)

$word->Visible = 0;

// recommend to set to 0, disables alerts like "Do you want MS Word to be the default .. etc"

$word->DisplayAlerts = 0;

// open the word 2007-2013 document

$word->Documents->Open($filenamedoc);

// save it as word 2003

// convert word 2007-2013 to PDF

//判断要生成的文件名是否存在

if(file_exists($filenamepdf)) {

//存在就删除

unlink ($filenamepdf);

}

$word->ActiveDocument->ExportAsFixedFormat($filenamepdf, 17, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false);

// quit the Word process

$word->Quit(false);

// clean up

unset($word);

if(!function_exists('read_pdf')) {

header('Content-type: application/pdf');

header('filename='.$filenamepdf);

readfile($filenamepdf);

read_pdf('Python_study.pdf');

}

echo 'ok';

}

?>

772822c631d80e69aec23a1aa147e864.png

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值