Home  >  Article  >  php教程  >  php调用COM组件,php调用组件

php调用COM组件,php调用组件

WBOY
WBOYOriginal
2016-06-13 08:50:44944browse

php调用COM组件,php调用组件

PHP 开启COM组件

1.先到PHP.INI中打开COM选项,com.allow_dcom = true 2.我这里的环境是PHP5.4.7,PHP 5.4.5后,com/dotnet 模块已经成了单独的扩展,所以需要在PHP.ini中配置extension=php_com_dotnet.dll,如果PHP VERSION 配置方法为:只需在扩展列表里添加extension=php_com_dotnet.dll即可
配置完毕后可以测试下,语句为 $word = new COM("word.application") or die("Unable to instanciate Word"); print "Loaded Word, version {$word->Version}\n"; 上面语句本机必须安装了office才可以   openoffice的为: $obj = new COM("com.sun.star.ServiceManager") or die("Unable to instanciate Word");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn