PHP中的checkdate()函数

Thacheckdate()函数可验证公历日期。如果日期有效,则返回TRUE,否则返回FALSE。

语法

checkdate(month, day, year)

参数

  • -指定月份为数字1至12

  • -指定一天从1到31的数

  • -指定年份为1和32767之间的数字。

返回

checkdate()如果日期有效,则该函数返回TRUE,否则返回FALSE。

示例

以下是一个例子-

<?php
   var_dump(checkdate(10,29,2018));
?>

输出结果

bool(true)

示例

让我们看另一个例子-

<?php
   $month = 9;
   $day = 30; $year = 2018;
   var_dump(checkdate($month, $day, $year));
?>

输出结果

bool(true)