当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > JDMonthName() 函数
The JDMonthName() function returns a month name.
JDMonthName()函数的作用是:返回月份的名字。
jdmonthname(jd,mode) |
Parameter 参数 | Description 描述 |
---|---|
jd | Required. A number (a Julian day count) 必要参数。一个数字(儒略日计数) |
mode | Optional. Defines which calendar to convert the Julian day count to, and what type of month names are to be returned. Mode values: 可选参数。定义需要转换成儒略日计数的日历格式,以及确定返回的月份类型名称:
|
<?php $jd=cal_to_jd(CAL_GREGORIAN,date("m"),date("d"),date("Y")); echo(jdmonthname($jd,1)); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
January |