yeshuawatso Posted May 22, 2006 Share Posted May 22, 2006 Well if you've read the description I'm needing help rounding time off. At first I was thinking of round(time(), 1800). But after a few glances, I noticed that that wouldn't work and if it did, it would round 1800 seconds not to the nearest half hour which is what I'm trying to do.I want to go by the servers time for this particular function, but I just can't seem to get my head wrapped aroung about how to do this properly.Let's say that it is currently 5:18pm, I am wanting the script to determine if the display time should be 5:00pm (when before 5:15) and 5:30 when after 5:15.Thanks for any advice.Yeshua Quote Link to comment https://forums.phpfreaks.com/topic/10194-rounding-time/ Share on other sites More sharing options...
Orio Posted May 22, 2006 Share Posted May 22, 2006 [code]<?phpif(date(i)>44){$half=FALSE;};if(date(i)<45 && date(i)>30){$half=TRUE;};if(date(i)<31 && date(i)>15){$half=TRUE;};if(date(i)<16){$half=FALSE;};if($half){$mins="30";}else{$mins="00";};$hour=date(H);echo("The time is ".$hour.":".$mins." right now.");?>[/code]Orio. Quote Link to comment https://forums.phpfreaks.com/topic/10194-rounding-time/#findComment-37995 Share on other sites More sharing options...
yeshuawatso Posted May 22, 2006 Author Share Posted May 22, 2006 See I knew it couldn't be to hard.Thanks [img src=\"style_emoticons/[#EMO_DIR#]/laugh.gif\" style=\"vertical-align:middle\" emoid=\":laugh:\" border=\"0\" alt=\"laugh.gif\" /] Quote Link to comment https://forums.phpfreaks.com/topic/10194-rounding-time/#findComment-37998 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.