PHP

PHP Menu

PHP

jdmonthname() Function - Definition, Syntax, Parameters, Examples

Definition

The jdmonthname() function returns a month name.

Syntax

jdmonthname(jd, mode)

Parameters

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:
0 - Gregorian - abbreviated form (Jan, Feb, Mar, etc.)
1 - Gregorian (January, February, March, etc.)
2 - Julian - abbreviated form (Jan, Feb, Mar, etc.)
3 - Julian (January, February, March, etc.)
4 - Jewish (Tishri, Heshvan, Kislev, etc.)
5 - French Republican (Vendemiaire, Brumaire, Frimaire, etc.)

Example

<?php

$month = gregoriantojd(12, 1, 2040);
echo jdmonthname($month, 0);

Introduction

PHP Basics

PHP Advance

PHP OOP

PHP Functions and Methods