Force re-cache of WSDL in php

前端 未结 4 2142
清酒与你
清酒与你 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条回答
  •  旧时难觅i
    2021-02-19 02:17

    I guess when you disable caching it will also stop writing to the cache. So when you re-enable the cache the old cached copy will still be there and valid. You could try (with caching enabled)

    ini_set('soap.wsdl_cache_ttl', 1);
    

    I put in a time-to-live of one second in because I think if you put zero in it will disable the cache entirely but not remove the entry. You probably will only want to put that line in when you want to kill the cached copy.

提交回复
热议问题