sandy1028 Posted February 25, 2008 Share Posted February 25, 2008 Hi, I have a code below where I have to display the 24hours of time from teh current time. THe week of the day is not displayed. When I print H:i:D the time is also changed. Please help me regarding this list($year,$month,$days,$hour,$minute,$second) = explode(':', date('Y:m:d:H:i:s')); $minute = 20*(floor($minute/20)); $time_interval = array(); for($minutes=0; $minutes<=24*60; $minutes += 20) { $time_interval[] = date('H:i:D', mktime($hour,$minute-$minutes,$second,$day,$month,$year)); } for($i=0;$i<=count($time_interval);$i++){ print $time_interval[$i]."\n"; } Link to comment https://forums.phpfreaks.com/topic/92848-displaying-day-error/ Share on other sites More sharing options...
AndyB Posted February 25, 2008 Share Posted February 25, 2008 http://ca.php.net/manual/en/function.mktime.php $time_interval[] = date('H:i:D', mktime($hour,$minute-$minutes,$second,$month,$days,$year)); Link to comment https://forums.phpfreaks.com/topic/92848-displaying-day-error/#findComment-475730 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.