Tagged Questions
8
votes
7answers
4k views
Round minute down to nearest quarter hour
I need to round times down to the nearest quarter hour in PHP. The times are being pulled from a MySQL database from a datetime column and formatted like 2010-03-18 10:50:00.
Example:
10:50 needs to ...
3
votes
3answers
567 views
How to ceil, floor and round bcmath numbers?
I need to mimic the exact functionality of the ceil(), floor() and round() functions on bcmath numbers, I've already found a very similar question but unfortunately the answer provided isn't good ...
1
vote
2answers
69 views
How to convert float to whole number?
I have a number stored in mysql as type float. From what I've read, I should be able to convert a float down by using floor(), but trying this or anything else isn't working. Hoping someone can spot ...
1
vote
4answers
583 views
Rounding a MYSQL datetime to earliest 15 minute interval in milliseconds (PHP)
I'm fetching a datetime from MYSQL which looks like:
2010-08-11 11:18:28
I need to convert it into the "floor" or the earliest 15 minute interval and output in milliseconds for another function.
...
0
votes
2answers
21 views
Always display time as XX:XX using PHP
All,
I have the following code to figure out a time based on milliseconds that were provided:
$ms = $value['trackTimeMillis'];
$track_time = floor($ms/60000).':'.floor(($ms%60000)/1000);
The issue ...
0
votes
2answers
36 views
how to group number of results in a drop down list in php?
As an example I have 19 rows in the database, how do i make it so my drop down list print 10, 20, etc as opposed to 1, 2, 3, 4, 5 etc. My code below currently print 1 to 20 rather than 10, 20.
...