Jump to content

Recommended Posts

Hi guys,

 

Is there a simple way to eg

 

if(18:30 > 07:30)

echo "correct";

 

obviously i know this wont work.

 

but is there a function to do it or will i have to explode it on : and then compare the hours, if they are equal then compare the minutes?

Link to comment
https://forums.phpfreaks.com/topic/187183-compare-time-in-format-hhmm/
Share on other sites

You should be able to use strtotime to convert them to a unix timestamp to compare. If that does not work properly, you can use the explode with mktime function to create a timestamp for comparison.

 

$time1 = strtotime("18:30");
$time2 = strtotime("07:30");

if ($time1 > $time2) 
    echo "Correct";

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.