<?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 => 'fr',
  ),
  'this' => 
  array (
    0 => 'soap.configuration.php',
    1 => 'Configuration &agrave; l\'ex&eacute;cution',
    2 => 'Configuration &agrave; l\'ex&eacute;cution',
  ),
  'up' => 
  array (
    0 => 'soap.setup.php',
    1 => 'Installation/Configuration',
  ),
  'prev' => 
  array (
    0 => 'soap.installation.php',
    1 => 'Installation',
  ),
  'next' => 
  array (
    0 => 'soap.constants.php',
    1 => 'Constantes pr&eacute;-d&eacute;finies',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    '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">Configuration à l&#039;exécution</h2>
 <p class="simpara">Le comportement de ces fonctions est
affecté par la configuration dans le fichier <var class="filename">php.ini</var>.</p>
 <p class="para">
  <table class="doctable table">
   <caption><strong>Options de configuration SOAP</strong></caption>
   
    <thead>
     <tr>
      <th>Nom</th>
      <th>Défaut</th>
      <th>Modifiable</th>
      <th>Historique</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>INI_ALL</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>INI_ALL</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>INI_ALL</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>INI_ALL</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>INI_ALL</code></strong></td>
      <td></td>
     </tr>

</tbody>
   
  </table>

 </p>

 <p class="para">Voici un éclaircissement sur
l&#039;utilisation des directives de configuration.</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">
       Active ou désactive le cache 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">
       Configure le nom du dossier où l&#039;extension SOAP
       peut mettre les fichiers de cache.
      </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">
       Configure la durée de vie des fichiers dans le cache,
       exprimée en secondes.
      </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">
       Si <code class="parameter">soap.wsdl_cache_enabled</code> est actif, cette
       directive détermine le type de cache. Il peut prendre l&#039;une des
       valeurs suivantes : 
       <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>) ou
       <strong><code><a href="soap.constants.php#constant.wsdl-cache-both">WSDL_CACHE_BOTH</a></code></strong> (<code class="literal">3</code>). Cela peut
       aussi être configuré via le paramètre <code class="parameter">options</code> 
       dans les constructeurs de <span class="classname"><a href="class.soapclient.php" class="classname">SoapClient</a></span> ou
       <span class="classname"><a href="class.soapserver.php" class="classname">SoapServer</a></span>.
      </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">
       Le nombre maximal de fichiers WSDL en cache. La réception de nouveaux
       fichiers dans le cache, s&#039;il est plein, causera l&#039;effacement des
       plus anciens.
      </p>
     </dd>
    

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