PHP.nl

jdtojewish

jdtojewish

Converts a Julian day count to a Jewish calendar date

string **jdtojewish** int $julian_day bool $hebrew int $flags

Converts a Julian Day Count to the Jewish Calendar.

julian_dayA julian day number as integer

hebrew If the parameter is set to true, the parameter is used for Hebrew, ISO-8859-8 encoded string based, output format.
hebrew``flags

flags A bitmask which may consist of , and . CAL_JEWISH_ADD_ALAFIM_GERESH``CAL_JEWISH_ADD_ALAFIM``CAL_JEWISH_ADD_GERESHAYIM

The Jewish date as a string in the form "month/day/year", or an ISO-8859-8 encoded Hebrew date string, according to the parameter. hebrew

Voorbeeld: Example

<?php
$jd = gregoriantojd(10, 8, 2002);
echo jdtojewish($jd, true), PHP_EOL,
     jdtojewish($jd, true, CAL_JEWISH_ADD_GERESHAYIM), PHP_EOL,
     jdtojewish($jd, true, CAL_JEWISH_ADD_ALAFIM), PHP_EOL,
     jdtojewish($jd, true,CAL_JEWISH_ADD_ALAFIM_GERESH), PHP_EOL;
?>
ב חשון התשסג
ב' חשון התשס"ג
ב חשון ה אלפים תשסג
ב חשון ה'תשסג

jewishtojd``cal_from_jd