<?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 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.timezone-version-get.php',
    1 => 'timezone_version_get',
    2 => 'Gets the version of the timezonedb',
  ),
  'up' => 
  array (
    0 => 'ref.datetime.php',
    1 => 'Date/Time Functions',
  ),
  'prev' => 
  array (
    0 => 'function.timezone-transitions-get.php',
    1 => 'timezone_transitions_get',
  ),
  'next' => 
  array (
    0 => 'datetime.error.tree.php',
    1 => 'Date/Time Errors and Exceptions',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/datetime/functions/timezone-version-get.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.timezone-version-get" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">timezone_version_get</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">timezone_version_get</span> &mdash; <span class="dc-title">
   Gets the version of the timezonedb
  </span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.timezone-version-get-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description"><span class="methodname"><strong>timezone_version_get</strong></span>(): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Returns the current version of the timezonedb.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.timezone-version-get-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">This function has no parameters.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.timezone-version-get-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns a <span class="type"><a href="language.types.string.php" class="type string">string</a></span> in the format
   <code class="literal">YYYY.increment</code>, such as <code class="literal">2022.2</code>.
  </p>
  <p class="para">
   If you have a timezone database version that is old (for example, it
   doesn&#039;t show the current year), then you can update the timezone information
   by either upgrading your PHP version, or installing the <a href="https://pecl.php.net/package/timezonedb" class="link external">&raquo;&nbsp;timezonedb</a> PECL package.
  </p>
  <p class="para">
   Some Linux distributions patch PHP&#039;s date/time support to use an
   alternative source for timezone information. In which case this function
   will return <code class="literal">0.system</code>. You are encouraged to install the
   <a href="https://pecl.php.net/package/timezonedb" class="link external">&raquo;&nbsp;timezonedb</a> PECL
   package in that case as well.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.timezone-version-get-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 Getting the timezonedb version</strong></p>
    <div class="example-contents">
<div class="annotation-interactive phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">timezone_version_get</span><span style="color: #007700">();</span></span></code></div>
    </div>

    <div class="example-contents"><p>The above example will output
something similar to:</p></div>
    <div class="example-contents screen">
<div class="annotation-interactive examplescode"><pre class="examplescode">2022.2</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.timezone-version-get-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li><a href="timezones.php" class="link">List of Supported Timezones</a></li>
   </ul>
  </p>
 </div>

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