gpt4 book ai didi

php - 在 php 中将 MS Word 文档转换为 html

转载 作者:可可西里 更新时间:2023-11-01 01:09:20 26 4
gpt4 key购买 nike

如何在 php 中将 Microsoft Word 文档转换为 html?我正在使用 windows,听说 COM 包可以做到这一点。

最佳答案

参见 COM extension of PHP .

the PHP site 的用法示例:

<?php
// starting word
$word = new COM("word.application") or die("Unable to instantiate Word");
echo "Loaded Word, version {$word->Version}\n";

//bring it to front
$word->Visible = 1;

//open an empty document
$word->Documents->Add();

//do some weird stuff
$word->Selection->TypeText("This is a test...");
$word->Documents[1]->SaveAs("Useless test.doc");

//closing word
$word->Quit();

//free the object
$word = null;
?>

关于php - 在 php 中将 MS Word 文档转换为 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4680383/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com