目录

PHP jddayofweek() 函数

❮ PHP 日历参考

示例

返回 1998 年 1 月 13 日的工作日:

<?php
$jd=gregoriantojd(1,13,1998);
echo jddayofweek($jd,1);
?>
运行示例 »

定义和用法

jddayofweek() 函数返回星期几。


语法

jddayofweek( jd,mode);

参数值

Parameter Description
jd Required. A Julian Day number
mode Optional. Specifies how to return the weekday. Can have one of the following values:
  • 0 - Default. Returns the weekday as an integer (0=Sunday, 1=Monday, etc.)
  • 1 - Returns the weekday as a string (Sunday, Monday, etc.)
  • 2 - Returns the weekday as a string, abbreviated form (Sun, Mon, etc.)


技术细节

返回值: 以字符串或整数形式返回公历工作日(取决于模式范围)
PHP 版本: 4+

❮ PHP 日历参考