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)