⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soap.configuration.html

📁 php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Runtime Configuration</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="soap.installation.html">Installation</a></div> <div class="next" style="text-align: right; float: right;"><a href="soap.resources.html">Resource Types</a></div> <div class="up"><a href="soap.setup.html">Installing/Configuring</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="soap.configuration" class="section"> <h2 class="title">Runtime Configuration</h2> <p class="simpara">The behaviour of these functions is affected by settings in <var class="filename">php.ini</var>.</p> <p class="para">  <table border="5">   <caption><b>SOAP Configuration Options</b></caption>   <colgroup>    <thead valign="middle">     <tr valign="middle">      <th colspan="1">Name</th>      <th colspan="1">Default</th>      <th colspan="1">Changeable</th>      <th colspan="1">Changelog</th>     </tr>    </thead>    <tbody valign="middle" class="tbody">     <tr valign="middle">      <td colspan="1" rowspan="1" align="left">soap.wsdl_cache_enabled</td>      <td colspan="1" rowspan="1" align="left">&quot;1&quot;</td>      <td colspan="1" rowspan="1" align="left">PHP_INI_ALL</td>      <td colspan="1" rowspan="1" align="left">Available since PHP 5.0.0.</td>     </tr>     <tr valign="middle">      <td colspan="1" rowspan="1" align="left">soap.wsdl_cache_dir</td>      <td colspan="1" rowspan="1" align="left">&quot;/tmp&quot;</td>      <td colspan="1" rowspan="1" align="left">PHP_INI_ALL</td>      <td colspan="1" rowspan="1" align="left">Available since PHP 5.0.0.</td>     </tr>     <tr valign="middle">      <td colspan="1" rowspan="1" align="left">soap.wsdl_cache_ttl</td>      <td colspan="1" rowspan="1" align="left">&quot;86400&quot;</td>      <td colspan="1" rowspan="1" align="left">PHP_INI_ALL</td>      <td colspan="1" rowspan="1" align="left">Available since PHP 5.0.0.</td>     </tr>     <tr valign="middle">      <td colspan="1" rowspan="1" align="left">soap.wsdl_cache_limit</td>      <td colspan="1" rowspan="1" align="left">&quot;5&quot;</td>      <td colspan="1" rowspan="1" align="left">PHP_INI_ALL</td>      <td colspan="1" rowspan="1" align="left">Available since PHP 5.1.5.</td>     </tr>     <tr valign="middle">      <td colspan="1" rowspan="1" align="left">soap.wsdl_cache</td>      <td colspan="1" rowspan="1" align="left">&quot;1&quot;</td>      <td colspan="1" rowspan="1" align="left">PHP_INI_ALL</td>      <td colspan="1" rowspan="1" align="left">Available since PHP 5.1.5.</td>     </tr>    </tbody>   </colgroup>  </table>  For further details and definitions of the PHP_INI_* constants, see the <a href="ini.html" class="xref">php.ini directives</a>.</p><p class="para">Here&#039;s a short explanation ofthe configuration directives.</p><p class="para"> <dl>  <dt id="ini.soap.wsdl-cache-enabled">   <span class="term">    <i><tt class="parameter">soap.wsdl_cache_enabled</tt></i>    <a href="language.types.boolean.html" class="type boolean">boolean</a>   </span>   <dd>    <p class="para">     Enables or disables the WSDL caching feature.    </p>   </dd>  </dt>  <dt id="ini.soap.wsdl-cache-dir">   <span class="term">    <i><tt class="parameter">soap.wsdl_cache_dir</tt></i>    <a href="language.types.string.html" class="type string">string</a>   </span>   <dd>    <p class="para">     Sets the directory name where the SOAP extension will put cache files.    </p>   </dd>  </dt>  <dt id="ini.soap.wsdl-cache-ttl">   <span class="term">    <i><tt class="parameter">soap.wsdl_cache_ttl</tt></i>    <a href="language.types.integer.html" class="type integer">integer</a>   </span>   <dd>    <p class="para">     Sets the number of seconds (time to live) that cached files will be used     instead of the originals.    </p>   </dd>  </dt>  <dt id="ini.soap.wsdl-cache-limit">   <span class="term">    <i><tt class="parameter">soap.wsdl_cache_limit</tt></i>    <a href="language.types.integer.html" class="type integer">integer</a>   </span>   <dd>    <p class="para">     Maximum number of in-memory cached WSDL files. Adding further files into     a full memory cache will delete the oldest files from it.    </p>   </dd>  </dt>  <dt id="ini.soap.wsdl-cache">   <span class="term">    <i><tt class="parameter">soap.wsdl_cache</tt></i>    <a href="language.types.integer.html" class="type integer">integer</a>   </span>   <dd>    <p class="para">     If <i><tt class="parameter">soap.wsdl_cache_enabled</tt></i> is on, this setting     determines the type of caching. It can be any of:     <b><tt>WSDL_CACHE_NONE</tt></b> (<i>0</i>),     <b><tt>WSDL_CACHE_DISK</tt></b> (<i>1</i>),     <b><tt>WSDL_CACHE_MEMORY</tt></b> (<i>2</i>) or     <b><tt>WSDL_CACHE_BOTH</tt></b> (<i>3</i>). This can     also be set via the <i><tt class="parameter">options</tt></i> array in the     <b class="classname">SoapClient</b> or <b class="classname">SoapServer</b>     constructor.    </p>   </dd>  </dt> </dl> </p></div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="soap.installation.html">Installation</a></div> <div class="next" style="text-align: right; float: right;"><a href="soap.resources.html">Resource Types</a></div> <div class="up"><a href="soap.setup.html">Installing/Configuring</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -