检查日期是过去还是将来
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查日期是过去还是将来相关的知识,希望对你有一定的参考价值。
Examine a date and return false if it's in the past, or true for the future.Slightly more complicated than it needs to be, however there's an easy tutorial with full explanation if you follow the attached link.
function checkDateAndTime($day,$month,$year,$hour,$minute) { $dateForConverting = $day."-".$month."-".$year."@".$hour.":".$minute; $returnBool = true; $diffInSecs = $newDateInSecs - $nowInSecs; if($diffInSecs < 0) { $returnBool = false; } return $returnBool; }
以上是关于检查日期是过去还是将来的主要内容,如果未能解决你的问题,请参考以下文章