Home  >  Article  >  php教程  >  PHP5.4调用COM组件失败的解决办法

PHP5.4调用COM组件失败的解决办法

WBOY
WBOYOriginal
2016-06-06 20:09:391544browse

项目需要,自己用VC++写了一个COM组件,供PHP来调用,但是用PHP调用的时候出现PHP Fatal error: Class COM not found in的错误信息,以前曾经这么调用过,但是这次不知道为什么突然不行了,网上查了查资料,PHP 5.4.5以前的版本,只需要在php.ini中把com.all

项目需要,自己用VC++写了一个COM组件,供PHP来调用,但是用PHP调用的时候出现PHP Fatal error: Class ‘COM’ not found in的错误信息,以前曾经这么调用过,但是这次不知道为什么突然不行了,网上查了查资料,PHP 5.4.5以前的版本,只需要在php.ini中把com.allow_dcom = true打开就可以了,但是5.4.5版本以后,PHP把com/dotnet 模块集成到了一个单独的扩展中,所以需要在php.ini中加一行扩展extension=php_com_dotnet.dll,是加一行,不是打开,默认配置文件中没有这一行的,然后重启IIS或Apache,再次运行就正常了!

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