PHP 中的 checkdate() 函数
phpprogrammingserver side programming
checkdate() 函数验证公历日期。如果日期有效,则返回 TRUE,否则返回 FALSE。
语法
checkdate(month, day, year)
参数
month − 将月份指定为 1 到 12 之间的数字
day − 将日期指定为 1 到 31 之间的数字
year −将年份指定为 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)