Sometimes it is useful to have the date in the format YYYY-MM-DD, which is sortable (e.g. you can sort dates by sorting the strings):
<?php
function JDToSortableJewish($jd) {
return
preg_replace("|(\d+)/(\d+)/(\d+)|","$3-$1-$2", // year-month-day
preg_replace("|/(\d)/|","/0$1/", // add zeros to the day
preg_replace("|^(\d)/|","0$1/", // add zeros to the month
JDToJewish($jd))));
}
?>
jdtojewish
(PHP 4, PHP 5)
jdtojewish — Convierte una Fecha Juliana a una fecha del Calendario Judío
Descripción
string jdtojewish
( int $juliandaycount
[, bool $hebrew = false
[, int $fl = 0
]] )
Convierte una Fecha Juliana al Calendario Judío.
Parámetros
- julianday
-
Un número de día juliano como un entero
- hebrew
-
Si el parámetro hebrew está establecido a TRUE, el parámetro fl se usa para el formato de salida, basado en cadena, Hebreo.
- fl
-
Los formatos disponibles son: CAL_JEWISH_ADD_ALAFIM_GERESH, CAL_JEWISH_ADD_ALAFIM, CAL_JEWISH_ADD_GERESHAYIM.
Valores devueltos
La fecha judía como una cadena de la forma "mes/día/año"
Historial de cambios
| Versión | Descripción |
|---|---|
| 5.0.0 | Se añadió el parámetro fl. |
| 4.3.0 | Se añadió el parámetro hebrew. |
Ejemplos
Example #1 Ejemplo de jdtojewish()
<?php
echo jdtojewish(gregoriantojd(10, 8, 2002), true,
CAL_JEWISH_ADD_GERESHAYIM + CAL_JEWISH_ADD_ALAFIM + CAL_JEWISH_ADD_ALAFIM_GERESH);
?>
Ver también
- jewishtojd() - Convierte una fecha del Calendario Judío a una Fecha Juliana
- cal_from_jd() - Convierte de una Fecha Juliana a un calendario soportado
erelsgl at gmail dot com
29-Aug-2009 10:28
erelsgl at gmail dot com
29-Aug-2009 09:01
In Hebrew leap years, the function will return 6 for Adar A, 7 for Adar B, 8 for Nisan, etc.
In Hebrew non-leap years, the function will return 6 for Adar, 8 for Nisan, etc.
i.e., the "real" Adar is Adar A.
asphp at dsgml dot com
28-May-2007 09:10
This function outputs in ISO-8859-8-l.
To convert to unicode UTF-8 do this:
<?php
echo mb_convert_encoding( jdtojewish( unixtojd(), true ), "UTF-8", "ISO-8859-8");
?>
gr8g0thamguy at yahoo dot com
01-Sep-2003 06:39
Based on the code already posted by Dave, I've modified it to display the *current* date on a page:
<?php
$gregorianMonth = date(n);
$gregorianDay = date(j);
$gregorianYear = date(Y);
$jdDate = gregoriantojd($gregorianMonth,$gregorianDay,$gregorianYear);
$hebrewMonthName = jdmonthname($jdDate,4);
$hebrewDate = jdtojewish($jdDate);
list($hebrewMonth, $hebrewDay, $hebrewYear) = split('/',$hebrewDate);
echo "$hebrewDay $hebrewMonthName $hebrewYear";
?>
dave_at_mitzvahweb.com
05-Mar-2002 12:04
There's probably a simpler way to do this, but I needed to convert a Gregorian date to a Hebrew one and display it with the Hebrew month name (not the number).
Perhaps it can help somebody...
<?php
//enter your Gregorian date with the variables $gregorianMonth, $gregorianDay, and $gregorianYear using the numerical representation of the month
$jdDate = gregoriantojd ( $gregorianMonth, $gregorianDay, $gregorianYear);
$gregorianMonthName = jdmonthname ( $jdDate, 1 );
$hebrewDate = jdtojewish ($jdDate);
list ($hebrewMonth, $hebrewDay, $hebrewYear) = split ('/', $hebrewDate);
$hebrewMonthName = jdmonthname ( $jdDate, 4);
echo "Your date in Hebrew would read: $hebrewDay $hebrewMonthName $hebrewYear";
?>
