大家好,我整晚都在努力完成这项工作,我试图根据$year
日期测试值以确保它不小于当前日期
这是我目前的代码它似乎不起作用我不确定我做错了什么
public function checkDateField($month, $day, $year)
{
if (!is_numeric($month) || !is_numeric($day) || !is_numeric($year) || !checkdate($month, $day, $year)< date("m-d-y")) {
$msg = '*Invalid date';
}
return $msg;
}