Force re-cache of WSDL in php

前端 未结 4 2119
清酒与你
清酒与你 2021-02-19 01:42

I know how to disable WSDL-cache in PHP, but what about force a re-caching of the WSDL?

This is what i tried: I run my code with caching set to disabled, and the new me

4条回答
  •  野性不改
    2021-02-19 02:25

    In my php.ini there's an entry which looks like this:

    soap.wsdl_cache_dir="/tmp"
    

    In /tmp, I found a bunch of files named wsdl-[some hexadecimal string]

    I can flush the cached wsdl files with this command:

    rm /tmp/wsdl-*
    

提交回复
热议问题