php - Round datetime to last hour -
i tried not find example of im trying do.
i got datetime values in mysql database has rounded down when value on use.
example, these values:
2013-04-20 07:14:42
2013-04-20 07:19:51
2013-04-20 07:37:26
2013-04-20 07:46:28
2013-04-20 07:59:44
should rounded down to:
2013-04-20 07:00:00
and
2013-04-20 16:25:34
should be:
2013-04-20 16:00:00 etc...
php code gets date value:
$d = strtotime($row["date"]);
so, how possible round down datetime value?
Comments
Post a Comment