<?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 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.jddayofweek.php',
    1 => 'JDDayOfWeek',
    2 => 'Restituisce il giorno della settimana',
  ),
  'up' => 
  array (
    0 => 'ref.calendar.php',
    1 => 'Calendar Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.gregoriantojd.php',
    1 => 'GregorianToJD',
  ),
  'next' => 
  array (
    0 => 'function.jdmonthname.php',
    1 => 'JDMonthName',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/calendar/functions/jddayofweek.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.jddayofweek" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">JDDayOfWeek</h1>
    <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">JDDayOfWeek</span> &mdash; <span class="dc-title">Restituisce il giorno della settimana</span></p>

   </div>
   <div class="refsect1 unknown-469" id="refsect1-function.jddayofweek-unknown-469">
    <h3 class="title">Descrizione</h3>
     <div class="methodsynopsis dc-description">
      <span class="methodname"><strong>jddayofweek</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$giornogiuliano</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$modo</code></span>): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>

    <p class="para rdfs-comment">
     Restituisce il giorno della settimana.  Può restituire una stringa o un intero
     a seconda del modo.
     <table class="doctable table">
      <caption><strong>Modi</strong></caption>
      
       <thead>
        <tr>
         <th>Modo</th>
         <th>Significato</th>
        </tr>

       </thead>

       <tbody class="tbody">
        <tr>
         <td>0</td> 
         <td>
          Restituisce il numero del giorno come intero (0=domenica, 1=lunedì, etc)
         </td>
        </tr>

        <tr>
         <td>1</td> 
         <td>
          Restituisce una stringa contenente il giorno della settimana
          (in inglese-gregoriano)
         </td>
        </tr>

        <tr>
         <td>2</td> 
         <td>
          Restituisce una stringa contenente il giorno della settimana abbreviato
          (in inglese-gregoriano)
         </td>
        </tr>

       </tbody>
      
     </table>

    </p>
   </div>

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