Jump to content

Displaying Rounded Time


rodin

Recommended Posts

Hi All, 

    Looking to see if there is a way to round time to the nearest half hour, so no matter what time is displayed, the nearest half hour is displayed.  ie:  If time displayed is 1:12AM - regardless, round it up to 1:30AM -- 1:01AM still rounds to 1:30AM -- Is this possible? Was unable to find anything on google to do this.. Any help greatly appreciated :)

Link to comment
Share on other sites

I would do something like this (haven't tested it tho):

 

<?php

$min = date("i");
$hour = date("g");
if($min > 30 || $min == 0)
{
if($min != 0)
{
	$hour++;
	$hour = ($hour > 12) ? 1 : $hour;
}
$final = $hour.":00 ".date("A");
}
else
$final = $hour.":30 ".date("A");

?>

 

Orio.

Link to comment
Share on other sites

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.