In PHP how can you clear a WSDL cache?

前端 未结 6 1545
被撕碎了的回忆
被撕碎了的回忆 2020-11-28 09:57

In through php_info() where the WSDL cache is held (/tmp), but I don\'t necessarily know if it is safe to delete all files starting with WSDL.

6条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 09:59

    Edit your php.ini file, search for soap.wsdl_cache_enabled and set the value to 0

    [soap]
    ; Enables or disables WSDL caching feature.
    ; http://php.net/soap.wsdl-cache-enabled
    soap.wsdl_cache_enabled=0
    

提交回复
热议问题