我最近遇到了我收到的这个 php 错误:
PHP Warning: PHP Startup: Unable to load dynamic library 'c:\PHP\php_soap.dll' - The specified procedure could not be found. in Unknown on line 0
我已经在我的两个 ini 文件中声明了 dll。我正在运行 Windows 7,并且该站点使用 MSSQL 数据库托管在 iis 上。我正在使用 PHP 5.4.1(公司政策)
我用于更改的 ini 文件:
; Directory in which the loadable extensions (modules) reside.
extension_dir = "c:\PHP"
extension=php_soap.dll
[soap]
; Enables or disables WSDL caching feature.
soap.wsdl_cache_enabled = 0
; Sets the directory name where SOAP extension will put cache files.
soap.wsdl_cache_dir="/tmp"
; (time to live) Sets the number of second while cached file will be used
; instead of original one.
soap.wsdl_cache_ttl=86400
请帮忙,我已经尝试了一切。甚至重新安装。
谢谢你。