Date/Time 函数
PHP Manual

checkdate

(PHP 4, PHP 5)

checkdate验证一个格里高里日期

说明

bool checkdate ( int $month , int $day , int $year )

如果给出的日期有效则返回 TRUE,否则返回 FALSE。检查由参数构成的日期的合法性。日期在以下情况下被认为有效:

Example #1 checkdate() 例子

<?php
var_dump
(checkdate(12312000));
var_dump(checkdate(2292001));
?>

以上例程会输出:

bool(true)
bool(false)

参见 mktime()strtotime()

参数

month

The month is between 1 and 12 inclusive.

day

The day is within the allowed number of days for the given month. Leap years are taken into consideration.

year

The year is between 1 and 32767 inclusive.

返回值

Returns TRUE if the date given is valid; otherwise returns FALSE.

范例

Example #2 checkdate() example

<?php
var_dump
(checkdate(12312000));
var_dump(checkdate(2292001));
?>

以上例程会输出:

bool(true)
bool(false)

参见


Date/Time 函数
PHP Manual