The behaviour of these functions is affected by settings in php.ini.
Tabel 1. SOAP Configuration Options
| Name | Default | Changeable |
|---|
| soap.wsdl_cache_enabled | "1" | PHP_INI_ALL |
| soap.wsdl_cache_dir | "/tmp" | PHP_INI_ALL |
| soap.wsdl_cache_ttl | 86400 | PHP_INI_ALL |
For further details and definition of the PHP_INI_* constants see
ini_set().
Here's a short explanation of
the configuration directives.
- soap.wsdl_cache_enabled
boolean
Enables or disables WSDL caching feature.
- soap.wsdl_cache_dir
string
Sets the directory name where SOAP extension will put cache files.
- soap.wsdl_cache_ttl
int
(time to live) Sets the number of second while cached file will be used
instead of original one.