<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/soap.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'soap.configuration.php',
    1 => '実行時設定',
    2 => '実行時設定',
  ),
  'up' => 
  array (
    0 => 'soap.setup.php',
    1 => 'インストール/設定',
  ),
  'prev' => 
  array (
    0 => 'soap.installation.php',
    1 => 'インストール手順',
  ),
  'next' => 
  array (
    0 => 'soap.constants.php',
    1 => '定義済み定数',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/soap/ini.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="soap.configuration" class="section">
 <h2 class="title">実行時設定</h2>
 <p class="simpara">
<var class="filename">php.ini</var> の設定により動作が変化します。
</p>
 <p class="para">
  <table class="doctable table">
   <caption><strong>SOAP 設定オプション</strong></caption>
   
    <thead>
     <tr>
      <th>名前</th>
      <th>デフォルト</th>
      <th>変更可能</th>
      <th>変更履歴</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td><a href="soap.configuration.php#ini.soap.wsdl-cache-enabled" class="link">soap.wsdl_cache_enabled</a></td>
      <td>1</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td></td>
     </tr>

     <tr>
      <td><a href="soap.configuration.php#ini.soap.wsdl-cache-dir" class="link">soap.wsdl_cache_dir</a></td>
      <td>/tmp</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td></td>
     </tr>

     <tr>
      <td><a href="soap.configuration.php#ini.soap.wsdl-cache-ttl" class="link">soap.wsdl_cache_ttl</a></td>
      <td>86400</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td></td>
     </tr>

     <tr>
      <td><a href="soap.configuration.php#ini.soap.wsdl-cache" class="link">soap.wsdl_cache</a></td>
      <td>1</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td></td>
     </tr>

     <tr>
      <td><a href="soap.configuration.php#ini.soap.wsdl-cache-limit" class="link">soap.wsdl_cache_limit</a></td>
      <td>5</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td></td>
     </tr>

</tbody>
   
  </table>

 </p>

 <p class="para">以下に設定ディレクティブに関する
簡単な説明を示します。</p>

 <p class="para">
  <dl>
   
     <dt id="ini.soap.wsdl-cache-enabled">
      <code class="parameter">soap.wsdl_cache_enabled</code>
      <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
     </dt>
     <dd>
      <p class="para">
       WSDLキャッシュ機能有効または無効にします。
      </p>
     </dd>
    
    
     <dt id="ini.soap.wsdl-cache-dir">
      <code class="parameter">soap.wsdl_cache_dir</code>
      <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
     </dt>
     <dd>
      <p class="para">
       SOAP 拡張モジュールがキャッシュファイルを置くディレクトリの名前を設定します。
      </p>
     </dd>
    
    
     <dt id="ini.soap.wsdl-cache-ttl">
      <code class="parameter">soap.wsdl_cache_ttl</code>
      <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
     </dt>
     <dd>
      <p class="para">
       キャッシュされたファイルが元のファイルの代わりに使用される秒数
       (有効期間)を設定します。
      </p>
     </dd>
    
    
     <dt id="ini.soap.wsdl-cache">
      <code class="parameter">soap.wsdl_cache</code>
      <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
     </dt>
     <dd>
      <p class="para">
       <code class="parameter">soap.wsdl_cache_enabled</code> が on の場合に、
       この設定によってキャッシュ方式を決めます。
       <strong><code><a href="soap.constants.php#constant.wsdl-cache-none">WSDL_CACHE_NONE</a></code></strong> (<code class="literal">0</code>)、
       <strong><code><a href="soap.constants.php#constant.wsdl-cache-disk">WSDL_CACHE_DISK</a></code></strong> (<code class="literal">1</code>)、
       <strong><code><a href="soap.constants.php#constant.wsdl-cache-memory">WSDL_CACHE_MEMORY</a></code></strong> (<code class="literal">2</code>) あるいは
       <strong><code><a href="soap.constants.php#constant.wsdl-cache-both">WSDL_CACHE_BOTH</a></code></strong> (<code class="literal">3</code>)
       のいずれかです。これは、
       <span class="classname"><a href="class.soapclient.php" class="classname">SoapClient</a></span> や <span class="classname"><a href="class.soapserver.php" class="classname">SoapServer</a></span>
       のコンストラクタにおける配列 <code class="parameter">options</code>
       で設定することもできます。
      </p>
     </dd>
    
    
     <dt id="ini.soap.wsdl-cache-limit">
      <code class="parameter">soap.wsdl_cache_limit</code>
      <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
     </dt>
     <dd>
      <p class="para">
       WSDL ファイルのキャッシュに使用するメモリの最大数を設定します。
       メモリキャッシュがいっぱいのときにさらにファイルを追加する場合は、
       既存のキャッシュの中のいちばん古いファイルを削除します。
      </p>
     </dd>
    

  </dl>
 </p>
</div><?php manual_footer($setup); ?>