是否可以从 Linux 访问 COM 对象
Office 在 Wine 中运行,这意味着我有一个正在运行的版本(2003)。
但是当我尝试创建一个新的 COM 对象时,我收到以下错误:
致命错误:未找到“COM”类
<?php $com = new COM('Word.Application'); $com->close();
有没有办法在不安装 Windows 的情况下使其正常工作?
Office is running in Wine, meaning I have a running Version (2003).
But when I try to create a new COM object I just get the following error:
Fatal error: Class 'COM' not found
<?php $com = new COM('Word.Application'); $com->close();
Is there a way to get this working without installing Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还必须在 Wine 下运行 PHP,或者在 Wine 下运行某种可以充当代理的程序。
You have to run PHP under Wine as well, or have some sort of program running under Wine that can act as a proxy.