こんにちは、私は現在、php の検証で立ち往生しています。日付を date(); に対してテストしようとしています。日付が現在のものであることを確認し、現在の日付よりも前の日付を許可しないようにします date()
public function checkDateField($month, $day, $year)
{
if (!is_numeric($month) || !is_numeric($day) || !is_numeric($year) || !checkdate($month, $day, $year)) {
$msg = '*Invalid date';
// then some where here test the value
of $month $day $year >= date...
something like that?
///
}
return $msg;
}