php开启com组件

在交通银行的开发借口中需要调用com组件,组件开启方法

1、首先在windows的“服务”里面检查COM+服务是否已经启动。如果未启动,请启动它。


2、检查php目录ext文件夹下面php_com_dotnet.dll是否存在。

说明:php的windows安装包是没有php_com_dotnet.dll文件的,需要下载相应php版本的zip源包 解压之后在ext目录下会有php_com_dotnet.dll,将该文件复制到已安装的php目录的ext目录下


3、如果没问题,在php.ini里面加入以下语句(php版本较高的才需要):

[PHP_COM_DOTNET]

extension=php_com_dotnet.dll

参考:http://php.net/manual/zh/com.installation.php

From PHP 5.4.5, COM and DOTNET is no longer built into the php core.you have to add COM support in php.ini: 

[COM_DOT_NET] 
extension=php_com_dotnet.dll 

Otherwise you will see this in your error log: 
Fatal error:  Class \'COM\' not found 

The extension is included with php 5.4.5 for Windows.


4、php.ini中设置

com.allow_dcom = true


你可能感兴趣的:(php开启com组件)