<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.intlcalendar.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'intlcalendar.setskippedwalltimeoption.php',
    1 => 'IntlCalendar::setSkippedWallTimeOption',
    2 => 'D&eacute;finit le comportement pour la gestion des heures murales saut&eacute;es lors des transitions de d&eacute;calage de fuseau horaire positif',
  ),
  'up' => 
  array (
    0 => 'class.intlcalendar.php',
    1 => 'IntlCalendar',
  ),
  'prev' => 
  array (
    0 => 'intlcalendar.setrepeatedwalltimeoption.php',
    1 => 'IntlCalendar::setRepeatedWallTimeOption',
  ),
  'next' => 
  array (
    0 => 'intlcalendar.settime.php',
    1 => 'IntlCalendar::setTime',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'reference/intl/intlcalendar/setskippedwalltimeoption.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intlcalendar.setskippedwalltimeoption" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">IntlCalendar::setSkippedWallTimeOption</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.5.0, PHP 7, PHP 8, PECL &gt;= 3.0.0a1)</p><p class="refpurpose"><span class="refname">IntlCalendar::setSkippedWallTimeOption</span> &mdash; <span class="dc-title">Définit le comportement pour la gestion des heures murales sautées lors des transitions de décalage de fuseau horaire positif</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-intlcalendar.setskippedwalltimeoption-description">
  <h3 class="title">Description</h3>
  <p class="para">
   Style orienté objet
  </p>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>IntlCalendar::setSkippedWallTimeOption</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$option</code></span>): <span class="type"><a href="language.types.singleton.php" class="type true">true</a></span></div>

  <p class="para rdfs-comment">
   Style procédural
  </p>
  <div class="methodsynopsis dc-description"><span class="methodname"><strong>intlcal_set_skipped_wall_time_option</strong></span>(<span class="methodparam"><span class="type"><a href="class.intlcalendar.php" class="type IntlCalendar">IntlCalendar</a></span> <code class="parameter">$calendar</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$option</code></span>): <span class="type"><a href="language.types.singleton.php" class="type true">true</a></span></div>

  <p class="para rdfs-comment">
   Définit la stratégie actuelle pour la gestion des heures murales sautées
   chaque fois que l&#039;horloge est avancée lors des transitions de début de l&#039;heure d&#039;été.
   La valeur par défaut est <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-last">IntlCalendar::WALLTIME_LAST</a></code></strong> (prendre
   l&#039;instant post-DST). Les autres valeurs possibles sont
   <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-first">IntlCalendar::WALLTIME_FIRST</a></code></strong> (prendre l&#039;instant qui
   se produit pendant l&#039;heure d&#039;été) et
   <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-next-valid">IntlCalendar::WALLTIME_NEXT_VALID</a></code></strong> (prendre l&#039;instant
   lorsque l&#039;heure d&#039;été commence).
  </p>
  <p class="para">
   Cela affecte uniquement l&#039;instant représenté par le calendrier (tel que rapporté par
   <span class="function"><a href="intlcalendar.gettime.php" class="function">IntlCalendar::getTime()</a></span>), les valeurs des champs ne seront pas
   réécrites en conséquence.  
  </p>
  <p class="para">
   Le calendrier doit être <a href="intlcalendar.setlenient.php" class="link">tolérant</a> pour que cette option ait
   un effet, sinon tenter de définir un temps inexistant provoquera une
   erreur.
  </p>
  <p class="para">
   Cette fonction requiert ICU 4.9 ou plus.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-intlcalendar.setskippedwalltimeoption-parameters">
  <h3 class="title">Liste de paramètres</h3>
  <dl>
   
    <dt><code class="parameter">calendar</code></dt>
    <dd>
     <p class="para">Une instance <span class="classname"><a href="class.intlcalendar.php" class="classname">IntlCalendar</a></span>.</p>
    </dd>
   
   
    <dt><code class="parameter">option</code></dt>
    <dd>
     <p class="para">
      L&#039;une des constantes <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-first">IntlCalendar::WALLTIME_FIRST</a></code></strong>,
      <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-last">IntlCalendar::WALLTIME_LAST</a></code></strong> ou
      <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-next-valid">IntlCalendar::WALLTIME_NEXT_VALID</a></code></strong>.     
     </p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-intlcalendar.setskippedwalltimeoption-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="para">
   Retourne toujours <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-intlcalendar.setskippedwalltimeoption-changelog">
  <h3 class="title">Historique</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Version</th>
       <th>Description</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
 <td>8.2.0</td>
 <td>
  Le type de retour est maintenant <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>, auparavant il était <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>.
 </td>
</tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-intlcalendar.setskippedwalltimeoption-examples">
  <h3 class="title">Exemples</h3>
  <p class="para">
   Voir un exemple sur
   <span class="function"><a href="intlcalendar.getskippedwalltimeoption.php" class="function">IntlCalendar::getSkippedWallTimeOption()</a></span>.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-intlcalendar.setskippedwalltimeoption-seealso">
  <h3 class="title">Voir aussi</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="intlcalendar.getskippedwalltimeoption.php" class="methodname" rel="rdfs-seeAlso">intlCalendar::getSkippedWallTimeOption()</a> - Obtient le comportement pour la gestion des heures murales saut&eacute;es</span></li>
    <li><span class="methodname"><a href="intlcalendar.setrepeatedwalltimeoption.php" class="methodname" rel="rdfs-seeAlso">intlCalendar::setRepeatedWallTimeOption()</a> - D&eacute;finit le comportement pour la gestion des heures murales r&eacute;p&eacute;t&eacute;es lors des transitions de d&eacute;calage de fuseau horaire n&eacute;gatif</span></li>
    <li><span class="methodname"><a href="intlcalendar.getrepeatedwalltimeoption.php" class="methodname" rel="rdfs-seeAlso">intlCalendar::getRepeatedWallTimeOption()</a> - Obtient le comportement pour la gestion des heures murales r&eacute;p&eacute;t&eacute;es</span></li>
   </ul>
  </p>
 </div>


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