ID:               29557
 Updated by:       [EMAIL PROTECTED]
 Reported By:      javier at evaloportunidades dot insp dot mx
-Status:           Open
+Status:           Bogus
 Bug Type:         *General Issues
 Operating System: Debian GNU/Linux 3.0 2.6.7
 PHP Version:      5.0.0
 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

The code takes <1 second to run, so of course the timestamp 
with 1 second precision will be the same. 


Previous Comments:
------------------------------------------------------------------------

[2004-08-07 00:10:46] javier at evaloportunidades dot insp dot mx

Description:
------------
   We use the strtotime function to get a value that is used as primary
key on a database table. But with PHP 5.0.0 the strtotime function is
returning duplicate values.


    Here is the configure line:
-------
'./configure' '--disable-cli' '--disable-cgi' '--without-pear'
'--without-mysql' '--with-pgsql'
'--with-apxs2=/usr/local/apache2/bin/apxs' '--enable-memory-limit'
-------


    With PHP 4 we didn't face this problem.


    Cheers,

    Javier



Reproduce code:
---------------
<?php 
for ($i=0;$i<10;$i++)
{
        $aux = strtotime("now");
        echo $aux ."<br>";
}
?>

Actual result:
--------------
1091768400
1091768400
1091768400
1091768400
1091768400
1091768400
1091768400
1091768400
1091768400
1091768400


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=29557&edit=1

Reply via email to