Why doesn't $now2 work?
$now = date('Y-m-d H:i:s', time());
$now2 = date("Y-m-d H:i:s", strtotime( "$now + 0.5 secs"));
Or how can I get it to work?
|
|
The reason its now working is because
Try
Output
|
||||
|
|
|
time() returns the number of seconds since the epoch. It doesn't know anything about fractions of a second. You'll need to use microtime() if you need this level of accuracy (see: http://php.net/manual/en/function.microtime.php) Edit: You of course can't use microtime in the date() formatting, so you need to do a calculation prior and then use it. Similar to:
Depending on your requirements, you may prefer to use a different function than round() to make $newtime and integer again suitable for formatting with date() |
|||||||||||||
|
|
The resolution of a Unix timestamp (which is what |
|||
|
|