<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.datetime.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.localtime.php',
    1 => 'localtime',
    2 => 'Get the local time',
  ),
  'up' => 
  array (
    0 => 'ref.datetime.php',
    1 => 'Функції Дати/часу',
  ),
  'prev' => 
  array (
    0 => 'function.idate.php',
    1 => 'idate',
  ),
  'next' => 
  array (
    0 => 'function.microtime.php',
    1 => 'microtime',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/datetime/functions/localtime.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.localtime" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">localtime</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">localtime</span> &mdash; <span class="dc-title">Get the local time</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.localtime-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>localtime</strong></span>(<span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.integer.php" class="type int">int</a></span></span> <code class="parameter">$timestamp</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$associative</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   The <span class="function"><strong>localtime()</strong></span> function returns an array
   identical to that of the structure returned by the C function
   call.
  </p>
 </div>

 
 <div class="refsect1 parameters" id="refsect1-function.localtime-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    
    
<dt><code class="parameter">timestamp</code></dt><dd><p class="para">
Необов&#039;язковий параметр <code class="parameter">timestamp</code> — це позначка часу Unix
типу <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>, яка стандартно дорівнює поточному місцевому часу, якщо
<code class="parameter">timestamp</code> не вказаний або <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>. Тобто є результатом
функції <span class="function"><a href="function.time.php" class="function">time()</a></span>.
</p></dd>
   
    
     <dt><code class="parameter">associative</code></dt>
     <dd>
      <p class="para">
       Determines whether the function should return a regular, numerically indexed array, 
       or an associative one.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.localtime-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   If <code class="parameter">associative</code> is set to <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> or not supplied then 
   the array is returned as a regular, numerically indexed array.
   If <code class="parameter">associative</code> is set to <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> then
   <span class="function"><strong>localtime()</strong></span> returns an associative array containing
   the elements of the structure returned by the C
   function call to localtime. 
   The keys of the associative array are as follows:
  </p>
  <p class="para">
   <ul class="itemizedlist">
    <li class="listitem">
     <span class="simpara">
      &quot;tm_sec&quot; - seconds, <code class="literal">0</code> to <code class="literal">59</code>
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_min&quot; - minutes, <code class="literal">0</code> to <code class="literal">59</code>
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_hour&quot; - hours, <code class="literal">0</code> to <code class="literal">23</code>
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_mday&quot; - day of the month, <code class="literal">1</code> to <code class="literal">31</code>
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_mon&quot; - month of the year, <code class="literal">0</code> (Jan) to <code class="literal">11</code> (Dec)
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_year&quot; - years since 1900
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_wday&quot; - day of the week, <code class="literal">0</code> (Sun) to <code class="literal">6</code> (Sat)
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_yday&quot; - day of the year, <code class="literal">0</code> to <code class="literal">365</code>
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      &quot;tm_isdst&quot; - is daylight savings time in effect?
     </span>
     <span class="simpara">
      Positive if yes, <code class="literal">0</code> if not, negative if unknown.
     </span>
    </li>
   </ul>
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.localtime-errors">
  <h3 class="title">Помилки/виключення</h3>
   
   <p class="para">
Якщо часовий пояс хибний, то під час кожного виклику функції дати/часу
виникатиме <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong>. Див.
<span class="function"><a href="function.date-default-timezone-set.php" class="function">date_default_timezone_set()</a></span>.</p>
 
 </div>


 <div class="refsect1 changelog" id="refsect1-function.localtime-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.0.0</td>
       <td>
        <code class="parameter">timestamp</code> is nullable now.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.localtime-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>localtime()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$localtime </span><span style="color: #007700">= </span><span style="color: #0000BB">localtime</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$localtime_assoc </span><span style="color: #007700">= </span><span style="color: #0000BB">localtime</span><span style="color: #007700">(</span><span style="color: #0000BB">time</span><span style="color: #007700">(), </span><span style="color: #0000BB">true</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$localtime</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$localtime_assoc</span><span style="color: #007700">);</span></span></code></div>
    </div>

    <div class="example-contents"><p>Поданий вище приклад виведе щось
схоже на:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [0] =&gt; 24
    [1] =&gt; 3
    [2] =&gt; 19
    [3] =&gt; 3
    [4] =&gt; 3
    [5] =&gt; 105
    [6] =&gt; 0
    [7] =&gt; 92
    [8] =&gt; 1
)

Array
(
    [tm_sec] =&gt; 24
    [tm_min] =&gt; 3
    [tm_hour] =&gt; 19
    [tm_mday] =&gt; 3
    [tm_mon] =&gt; 3
    [tm_year] =&gt; 105
    [tm_wday] =&gt; 0
    [tm_yday] =&gt; 92
    [tm_isdst] =&gt; 1
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.localtime-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.getdate.php" class="function" rel="rdfs-seeAlso">getdate()</a> - Get date/time information</span></li>
   </ul>
  </p>
 </div>


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