ID: 29557
Comment by: never_slept at yahoo dot com
Reported By: javier at evaloportunidades dot insp dot mx
Status: Open
Bug Type: *General Issues
Operating System: Debian GNU/Linux 3.0 2.6.7
PHP Version: 5.0.0
New Comment:
Yes I read that bug report and although them sounded to potentially be
the same thing... my strtotime("now") does in fact spit out a different
value every second and that bug report makes no mention of using the
second argument for strtotime()
Previous Comments:
------------------------------------------------------------------------
[2004-08-23 06:01:05] cplee at buzzcity dot com
The problem still exists in 5.0.1! Anyway, the problem lies in some
"conditions" being commented in the ext/standard/parsedate.y (and
parsedate.c) under the php_parse_date() function. (parsedate.y:1082,
parsedate.c: 2325). I basically uncomment those lines and did a
recompile. Now the following command gives the correct result:
Command:
php -r 'echo strtotime("now");'
Result:
1093234981
Hope this helps!
--cp
------------------------------------------------------------------------
[2004-08-09 09:33:14] [EMAIL PROTECTED]
"now" returns midnight of the current day. I think this is wrong too.
------------------------------------------------------------------------
[2004-08-09 09:12:44] javier at evaloportunidades dot insp dot mx
But the problem is that even after n seconds with PHP 5.0.0 I get the
same result.
------------------------------------------------------------------------
[2004-08-08 23:04:54] [EMAIL PROTECTED]
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.
------------------------------------------------------------------------
[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