如何用PHP验证日期

ada*_*dam 6 php

如果按照以下格式通过表单提交日期,$month=2, $day=31, $year= 2010.如果有效日期,如何使用PHP日期函数进行验证?谢谢.

Jon*_*FTW 13

http://php.net/manual/en/function.checkdate.php

checkdate功能是谷歌搜索"php验证日期"的第一个结果

在您的情况下,用法将是:

checkdate($month, $day, $year);
Run Code Online (Sandbox Code Playgroud)