<?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 => 'zh',
  ),
  'this' => 
  array (
    0 => 'intlcalendar.setskippedwalltimeoption.php',
    1 => 'IntlCalendar::setSkippedWallTimeOption',
    2 => 'Set behavior for handling skipped wall times at positive timezone offset transitions',
  ),
  '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' => 'en',
    '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">Set behavior for handling skipped wall times at positive timezone offset transitions</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-intlcalendar.setskippedwalltimeoption-description">
  <h3 class="title">说明</h3>
  <p class="para">
   面向对象风格
  </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">
   过程化风格
  </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">
   Sets the current strategy for dealing with wall times that are skipped
   whenever the clock is forwarded during dailight saving time start transitions.
   The default value is <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-last">IntlCalendar::WALLTIME_LAST</a></code></strong> (take
   it as being the same instant as the one when the wall time is one hour
   more).  Alternative values are
   <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-first">IntlCalendar::WALLTIME_FIRST</a></code></strong> (same instant as the one
   with a wall time of one hour less) and
   <strong><code><a href="class.intlcalendar.php#intlcalendar.constants.walltime-next-valid">IntlCalendar::WALLTIME_NEXT_VALID</a></code></strong> (same instant as
   when DST begins).
  </p>
  <p class="para">
   This affects only the instant represented by the calendar (as reported by
   <span class="function"><a href="intlcalendar.gettime.php" class="function">IntlCalendar::getTime()</a></span>), the field values will not be
   rewritten accordingly.
  </p>
  <p class="para">
   The calendar must be <a href="intlcalendar.setlenient.php" class="link">lenient</a> for this option to have
   any effect, otherwise attempting to set a non-existing time will cause an
   error.
  </p>
  <p class="para">
   This function requires ICU 4.9 or later.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-intlcalendar.setskippedwalltimeoption-parameters">
  <h3 class="title">参数</h3>
  <dl>
   
    <dt><code class="parameter">calendar</code></dt>
    <dd>
     <p class="para"><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">
      One of the constants <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> or
      <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">返回值</h3>
  <p class="para">
   总是返回 <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">更新日志</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>版本</th>
       <th>说明</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
 <td>8.2.0</td>
 <td>
  现在返回类型为 <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>；之前是 <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">示例</h3>
  <p class="para">
   See the example on
   <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">参见</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="intlcalendar.getskippedwalltimeoption.php" class="methodname" rel="rdfs-seeAlso">intlCalendar::getSkippedWallTimeOption()</a> - Get behavior for handling skipped wall time</span></li>
    <li><span class="methodname"><a href="intlcalendar.setrepeatedwalltimeoption.php" class="methodname" rel="rdfs-seeAlso">intlCalendar::setRepeatedWallTimeOption()</a> - Set behavior for handling repeating wall times at negative timezone offset transitions</span></li>
    <li><span class="methodname"><a href="intlcalendar.getrepeatedwalltimeoption.php" class="methodname" rel="rdfs-seeAlso">intlCalendar::getRepeatedWallTimeOption()</a> - Get behavior for handling repeating wall time</span></li>
   </ul>
  </p>
 </div>


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