你好,这对我来说很好,但我认为它可以更简单任何人都可以帮助我使用这段代码来检查用户输入的时间和日期
function ckeck_date($sug_date, $sug_time)
{
if ($sug_date[0] == NULL)
{
return TRUE;
}
else
{
for ($i = 0; $i < count($sug_date); $i++)
{
if ($this->_totimestamp($sug_date[$i], $sug_time[$i]) < mktime(23, 59, 59, date('m'), date('d') - 1, date('Y')))
{
$x=false;
}
else $y=true;
}
}
if(isset($x))
{
return $x*$y;
}
else return true;
}