<?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.getactualminimum.php',
    1 => 'IntlCalendar::getActualMinimum',
    2 => 'The minimum value for a field, considering the objectʼs current time',
  ),
  'up' => 
  array (
    0 => 'class.intlcalendar.php',
    1 => 'IntlCalendar',
  ),
  'prev' => 
  array (
    0 => 'intlcalendar.getactualmaximum.php',
    1 => 'IntlCalendar::getActualMaximum',
  ),
  'next' => 
  array (
    0 => 'intlcalendar.getavailablelocales.php',
    1 => 'IntlCalendar::getAvailableLocales',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/intl/intlcalendar/getactualminimum.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intlcalendar.getactualminimum" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">IntlCalendar::getActualMinimum</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::getActualMinimum</span> &mdash; <span class="dc-title">The minimum value for a field, considering the objectʼs current time</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-intlcalendar.getactualminimum-description">
  <h3 class="title">说明</h3>
  <p class="para">
   面向对象风格
  </p>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>IntlCalendar::getActualMinimum</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$field</code></span>): <span class="type"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   过程化风格
  </p>
  <div class="methodsynopsis dc-description"><span class="methodname"><strong>intlcal_get_actual_minimum</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">$field</code></span>): <span class="type"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Returns a fieldʼs relative minimum value around the current time. The exact
   semantics vary by field, but in the general case this is the value that
   would be obtained if one would set the field value into the
   <a href="intlcalendar.getgreatestminimum.php" class="link">greatest relative minimum</a>
   for the field and would decrement it until reaching the
   <a href="intlcalendar.getminimum.php" class="link">global minimum</a> or the field value
   wraps around, in which the value returned would be the global minimum or
   the value before the wrapping, respectively.
  </p>
  <p class="para">
   For the Gregorian calendar, this is always the same as
   <span class="function"><a href="intlcalendar.getminimum.php" class="function">IntlCalendar::getMinimum()</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-intlcalendar.getactualminimum-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">field</code></dt>
    <dd>
     

<p class="para">
 One of the <span class="classname"><a href="class.intlcalendar.php" class="classname">IntlCalendar</a></span> date/time <a href="class.intlcalendar.php#intlcalendar.constants" class="link">field constants</a>. These are integer
 values between <code class="literal">0</code> and
 <strong><code>IntlCalendar::FIELD_COUNT</code></strong>.
</p>

    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-intlcalendar.getactualminimum-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   An <span class="type"><a href="language.types.integer.php" class="type int">int</a></span> representing the minimum value in the fieldʼs
   unit 或者在失败时返回 <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-intlcalendar.getactualminimum-seealso">
  <h3 class="title">参见</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="intlcalendar.getminimum.php" class="methodname" rel="rdfs-seeAlso">IntlCalendar::getMinimum()</a> - Get the global minimum value for a field</span></li>
    <li><span class="methodname"><a href="intlcalendar.getgreatestminimum.php" class="methodname" rel="rdfs-seeAlso">IntlCalendar::getGreatestMinimum()</a> - Get the largest local minimum value for a field</span></li>
    <li><span class="methodname"><a href="intlcalendar.getactualmaximum.php" class="methodname" rel="rdfs-seeAlso">IntlCalendar::getActualMaximum()</a> - The maximum value for a field, considering the objectʼs current time</span></li>
   </ul>
  </p>
 </div>



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