我正在收到此警告,尝试以这种方式验证日期,当用户输入一个字或与该格式的日期不同的东西时,我想知道原因,我这样做
<form method="post" action="date.php">
<input type="text" name="birthdate" value="yyyy/mm/dd">
<button type="submit">submit</button>
</form>
在date.php文件中是这个
$date=$_POST['birthdate'];
$datadate=explode('/',$date);
if(!checkdate($datadate[1],$datadate[2],$datadate[0])){
die("not a valid date");
}
由于