php调用COM组件,php调用组件_PHP教程

WBOY
Release: 2016-07-12 09:04:41
Original
1145 people have browsed it

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");

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1072322.htmlTechArticlephp调用COM组件,php调用组件 PHP 开启COM组件 1.先到PHP.INI中打开COM选项,com.allow_dcom = true 2. 我这里的环境是PHP5.4.7, PHP 5.4.5后,com/dotnet 模块...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!