目录

PHP cal_info() 函数

❮ PHP 日历参考

示例

返回有关公历的信息:

<?php
print_r(cal_info(0));
?>
运行示例 »

定义和用法

cal_info() 函数返回有关指定日历的信息。


语法

cal_info( calendar);

参数值

Parameter Description
calendar Optional. Specifies a number that indicates which calendar to return information about:
  • 0 = CAL_GREGORIAN
  • 1 = CAL_JULIAN
  • 2 = CAL_JEWISH
  • 3 = CAL_FRENCH

Tip: If the calendar parameter is omitted, cal_info() returns info about all calendars



技术细节

返回值: 返回一个包含日历元素的数组,例如:
  • 名称
  • 卡符号
  • 缩写月份
  • 每月最大天数
PHP 版本: 4.1+
变更日志: 在 PHP 5.0 中日历参数变为可选

❮ PHP 日历参考