PHP Fatal error: Uncaught com_exception: <b>Source:</b> Kingsoft WPS<br/><b>Description:</b> 文档打开失败。
解决方案:
设置 com 实例的 codepage 参数为 65001(UTF-8),如下代码:
$word = new com('word.application', null, 65001) or die('Unable to instantiate Word');// com 构造函数的参数
public com::__construct(string $module_name,array|string|null $server_name = null,int $codepage = CP_ACP,string $typelib = ""
)
更多详情:https://www.php.net/manual/en/com.construct.php