PHP5 SOAP WEB服务配置
PHP5 SOAP WEB服务配置
1,php.ini 配置
extension=php_soap.dll #
[soap]
; Enables or disables WSDL caching feature.
soap.wsdl_cache_enabled=1
; Sets the directory name where SOAP extension will put cache files.
soap.wsdl_cache_dir="D:/AppServ/Apache2.2/temp"
; (time to live) Sets the number of second while cached file will be used
; instead of original one.
soap.wsdl_cache_ttl=86400
; Local Variables:
; tab-width: 4
; End:
always_populate_raw_post_data = On
soap.wsdl_cache_enabled=0 //关闭soap缓存 在开发时利于调试 在实际项目使用时请打开调为1