YIQV, this should correct your issue with Adar being displayed as AdarI:
<?php
// assuming that $jewish_month is the Jewish month,
// and $jewish_year is the Jewish year,
// you can use this script to replace 'Adar I' with 'Adar' when it is not a leap year.
// this is because a Jewish leap year occurs every 3rd, 6th, 8th, 11th, 14th, 17th, and 19th year.
if( $jewish_month == "AdarI" &&
$jewish_year%19 != 0 &&
$jewish_year%19 != 3 &&
$jewish_year%19 != 6 &&
$jewish_year%19 != 8 &&
$jewish_year%19 != 11 &&
$jewish_year%19 != 14 &&
$jewish_year%19 != 17
) {
$jewish_month = "Adar";
}
?>
JDMonthName
(PHP 4, PHP 5)
JDMonthName — Vrátit název měsíce
Popis
string jdmonthname ( int $julianday, int $mode )Vrací řetězec obsahující název měsíce. mode určuje, na který kalendář se má Julian Day Count konvertovat a jaký typ jména se má vrátit.
Tabulka 17. Kalendářové módy
| Mód | Význam |
|---|---|
| 0 | Gregoriánský - zkrácený |
| 1 | Gregoriánský |
| 2 | Juliánský - zkrácený |
| 3 | Juliánský |
| 4 | idovský |
| 5 | Francouzský republikánský |
JDMonthName
Shai
24-Sep-2005 03:12
24-Sep-2005 03:12
YIQV
30-Jan-2005 10:47
30-Jan-2005 10:47
I am finding an inconsistency in the Jewish month Adar. The function always returns AdarI regardless of whether the year is a jewish leapyear. The month is known as Adar (not AdarI) in non-leap years. Also when using function jdtojewish with bool hebrew set to true it always returns (ADR) and not (ADR A) when it's a leap year. AdarII in Hebrew and English seems to work properly.
