I need to check a date in PHP if it is bigger than the 00:00 hours of the next day. At the first sight I tried to use
if($date_variable<strtotime('+1day')){
return true;
}else{
return false
}
But what it's doing is in fact adding to time() (24*60*60)
Is there any solution to that?
P.S.: Im trying to avoid the use of date on +1day and backwards to UNIX without hours info
Okay the accepted answer is now over three years old and since we got PHP5 and even now PHP7 we can do it much easier with the
DateTime
class. TheDateTime
class is a native PHP class. No further library is in need.The
DateTime
class accepts all parameters thestrtotime()
function also accepts.