PHP jdmonthname() Function
Example
Return the abbreviated Gregorian monthname of 13th January, 1998:
<?php
$jd=gregoriantojd(1,13,1998);
echo jdmonthname($jd,0);
?>
Run Example »
Definition and Usage
The jdmonthname() function returns a month name.
Syntax
jdmonthname(jd,mode);
Parameter Values
Parameter | Description |
---|---|
jd | Required. A Julian Day number |
mode | Optional. Specifies which calendar to convert the Julian Day Count to, and how the month name is to be returned. Mode values:
|
Technical Details
Return Value: | Returns the month name for the specified Julian Day and calendar |
---|---|
PHP Version: | 4+ |
❮ PHP Calendar Reference