<?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.jdmonthname.php',
    1 => 'jdmonthname',
    2 => 'Liefert den Monatsnamen',
  ),
  'up' => 
  array (
    0 => 'ref.calendar.php',
    1 => 'Calendar Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.jddayofweek.php',
    1 => 'jddayofweek',
  ),
  'next' => 
  array (
    0 => 'function.jdtofrench.php',
    1 => 'jdtofrench',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/calendar/functions/jdmonthname.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.jdmonthname" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">jdmonthname</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">jdmonthname</span> &mdash; <span class="dc-title">Liefert den Monatsnamen</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.jdmonthname-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>jdmonthname</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="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$mode</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Gibt eine Zeichenkette zurück, die einen Monatsnamen enthält.
   <code class="parameter">mode</code> teilt dieser Funktion mit, in welchen Kalender die
   julianische Tageszahl umgewandelt werden soll, und welche Art von Monatsnamen
   zurückgegeben werden sollen.
   <table class="doctable table">
    <caption><strong>Mögliche <code class="parameter">mode</code>-Werte</strong></caption>
    
     <thead>
      <tr>
       <th>Modus</th>
       <th>Bedeutung</th>
       <th>Werte</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td><strong><code><a href="calendar.constants.php#constant.cal-month-gregorian-short">CAL_MONTH_GREGORIAN_SHORT</a></code></strong></td>
       <td>Gregorianisch (Abk.)</td>
       <td>Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec</td>
      </tr>

      <tr>
       <td><strong><code><a href="calendar.constants.php#constant.cal-month-gregorian-long">CAL_MONTH_GREGORIAN_LONG</a></code></strong></td>
       <td>Gregorianisch</td>
       <td>January, February, March, April, May, June, July, August, September, October, November, December</td>
      </tr>

      <tr>
       <td><strong><code><a href="calendar.constants.php#constant.cal-month-julian-short">CAL_MONTH_JULIAN_SHORT</a></code></strong></td>
       <td>Julianisch - (Abk.)</td>
       <td>Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec</td>
      </tr>

      <tr>
       <td><strong><code><a href="calendar.constants.php#constant.cal-month-julian-long">CAL_MONTH_JULIAN_LONG</a></code></strong></td>
       <td>Julianisch</td>
       <td>January, February, March, April, May, June, July, August, September, October, November, December</td>
      </tr>

      <tr>
       <td><strong><code><a href="calendar.constants.php#constant.cal-month-jewish">CAL_MONTH_JEWISH</a></code></strong></td>
       <td>Jüdisch</td>
       <td>Tishri, Heshvan, Kislev, Tevet, Shevat, Adar, AdarI, AdarII, Nisan, Iyyar, Sivan, Tammuz, Av, Elul</td>
      </tr>

      <tr>
       <td><strong><code><a href="calendar.constants.php#constant.cal-month-french">CAL_MONTH_FRENCH</a></code></strong></td>
       <td>Französisch revolutionär</td>
       <td>Vendemiaire, Brumaire, Frimaire, Nivose, Pluviose, Ventose, Germinal, Floreal, Prairial, Messidor, Thermidor, Fructidor, Extra</td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.jdmonthname-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">julian_day</code></dt>
     <dd>
      <p class="para">
       Ein Julianischer Tag als Integer.
      </p>
     </dd>
    
    
     <dt><code class="parameter">mode</code></dt>
     <dd>
      <p class="para">
       Der Kalender-Modus (siehe Tabelle weiter oben).
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.jdmonthname-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Der Monatsname für den gegebene julianischen Tag im
   gewünschten <code class="parameter">mode</code>.
  </p>
 </div>


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