The behaviour of these functions is affected by settings in php.ini.
  
Table 1. SOAP Configuration Options
| Name | Default | Changeable | Changelog | 
|---|
| soap.wsdl_cache_enabled | "1" | PHP_INI_ALL | Available since PHP 5.0.0. | 
| soap.wsdl_cache_dir | "/tmp" | PHP_INI_ALL | Available since PHP 5.0.0. | 
| soap.wsdl_cache_ttl | "86400" | PHP_INI_ALL | Available since PHP 5.0.0. | 
  For further details and definitions of the 
PHP_INI_* constants, see the 
Appendix G.
Here's a short explanation of
the configuration directives.
 
- soap.wsdl_cache_enabled
    boolean
 
     Enables or disables the WSDL caching feature.
    
- soap.wsdl_cache_dir
    string
 
     Sets the directory name where the SOAP extension will put cache files.
    
- soap.wsdl_cache_ttl
    int
 
     Sets the number of seconds (time to live) that cached files will be used
     instead the originals.