Home PHP How to clear the Salesforce WSDL Cache using PHP

How to clear the Salesforce WSDL Cache using PHP

clearing the Salesforce WSDL cache files to prevent future caching, we need to add this line in your php code:

 
[code]
< ?php ini_set("soap.wsdl_cache_enabled", 0); //Define your salesforce and php connections ?>
[/code]

You may also like

Leave a Comment