vote up 2 vote down star

Hi, this code always returns 0 in PHP 5.2.5 for microseconds:

<?php
$dt = new DateTime();
echo $dt->format("Y-m-d\TH:i:s.u") . "\n";
?>

Output:

[root@www1 ~]$ php date_test.php
2008-10-03T20:31:26.000000
[root@www1 ~]$ php date_test.php
2008-10-03T20:31:27.000000
[root@www1 ~]$ php date_test.php
2008-10-03T20:31:27.000000
[root@www1 ~]$ php date_test.php
2008-10-03T20:31:28.000000

Any ideas?

flag
Doesn't date("Y-m-d\TH:i:s.u") have less overhead? – Unkwntech Oct 4 '08 at 0:37
Maybe you're too lucky ;) – AlbertEin Oct 4 '08 at 0:37
@Unkwntech: date() only supports integers. The manual forwards you to date_format/DateTime::format for using 'u'. – Jonathan Lonowski Oct 4 '08 at 0:41
@Jonathan Lonowski: yes, i am using DateTime::format – eydelber Oct 4 '08 at 0:51
From us.php.net/date: Note: Since this function only accepts integer timestamps the u format character is only useful when using the date_format() function with user based timestamps created with date_create(). Does this mean i have to manually build it with microtime()? – eydelber Oct 4 '08 at 0:56

5 Answers

vote up 0 vote down

String in a format accepted by strtotime() It work!

link|flag
vote up 1 vote down

date_create

time: String in a format accepted by strtotime(), defaults to "now".

strtotime

time: The string to parse, according to the GNU ยป Date Input Formats syntax. Before PHP 5.0.0, microseconds weren't allowed in the time, since PHP 5.0.0 they are allowed but ignored.

link|flag
vote up 2 vote down

This function pulled from http://us3.php.net/date

function udate($format, $utimestamp = null)
{
    if (is_null($utimestamp))
        $utimestamp = microtime(true);

    $timestamp = floor($utimestamp);
    $milliseconds = round(($utimestamp - $timestamp) * 1000000);

    return date(preg_replace('`(?<!\\\\)u`', $milliseconds, $format), $timestamp);
}

echo udate('H:i:s.u'); // 19:40:56.78128

Very screwy you have to implement this function to get "u" to work... :\

link|flag
Hi, what about (string)microtime(), 1, 8? – eydelber Oct 4 '08 at 3:22
vote up 2 vote down check

This seems to work, although it seems illogical that http://us.php.net/date documents the microsecond specifier yet doesn't really support it:

function getTimestamp()
{
        return date("Y-m-d\TH:i:s") . substr((string)microtime(), 1, 8);
}
link|flag
By doing separate calls you have a small chance of two time stamps being out of order: eg call date at 1:29:22.999999 and mircotime at 1:29:23.000001. On my server consecutive calls are about 10 us apart. – Lucky Aug 6 at 22:18
1  
try: list($usec, $sec) = explode(" ", microtime()); return date (date("Y-m-d\TH:i:s", $sec) . $usec; – Lucky Aug 6 at 22:27
vote up 1 vote down

From http://bugs.php.net/bug.php?id=45554 it would appear that this is the expected result, which I find odd.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.