<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.calendar.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.jdtounix.php',
    1 => 'jdtounix',
    2 => 'Konvertiert ein julianisches Datum in einen Unix-Timestamp',
  ),
  'up' => 
  array (
    0 => 'ref.calendar.php',
    1 => 'Calendar Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.jdtojulian.php',
    1 => 'jdtojulian',
  ),
  'next' => 
  array (
    0 => 'function.jewishtojd.php',
    1 => 'jewishtojd',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/calendar/functions/jdtounix.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.jdtounix" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">jdtounix</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">jdtounix</span> &mdash; <span class="dc-title">Konvertiert ein julianisches Datum in einen Unix-Timestamp</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.jdtounix-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>jdtounix</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$julian_day</code></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="para rdfs-comment">
   Diese Funktion gibt einen Unix-Timestamp (in Sekunden seit dem 1.1.1970)
   zurück, der dem in <code class="parameter">julian_day</code> übergebenen
   julianischen Datum entspricht. Die zurückgegebene Zeit ist UTC.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.jdtounix-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">julian_day</code></dt>
     <dd>
      <p class="para">
       Die Zahl eines julianischen Tages zwischen <code class="literal">2440588</code>
       und <code class="literal">106751993607888</code> auf 64-Bit-Systemen oder
       zwischen <code class="literal">2440588</code> und <code class="literal">2465443</code> auf
       32-Bit-Systemen.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.jdtounix-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Der Unix-Timestamp für den Anfang (Mitternacht, nicht Mittag) des
   angegebenen julianischen Tages.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.jdtounix-errors">
  <h3 class="title">Fehler/Exceptions</h3>
  <p class="para">
   Falls <code class="parameter">julian_day</code> außerhalb des zulässigen Bereichs
   liegt, wird ein <span class="classname"><a href="class.valueerror.php" class="classname">ValueError</a></span> ausgelöst.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.jdtounix-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       Diese Funktion gibt im Fehlerfall nicht mehr <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> zurück, sondern
       löst stattdessen einen <span class="classname"><a href="class.valueerror.php" class="classname">ValueError</a></span> aus.
      </td>
     </tr>

     <tr>
      <td>7.3.24, 7.4.12</td>
      <td>
       Die Obergrenze von <code class="parameter">julian_day</code> wurde erweitert.
       Bisher lag sie unabhängig von der Architektur bei
       <code class="literal">2465342</code>.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.jdtounix-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.unixtojd.php" class="function" rel="rdfs-seeAlso">unixtojd()</a> - Konvertiert Unix-Timestamp in Julianisches Datum</span></li>
   </ul>
  </p>
 </div>


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