php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38416 bug in date and mysql
Submitted: 2006-08-10 13:40 UTC Modified: 2006-08-10 14:12 UTC
From: oren at telebox dot co dot il Assigned:
Status: Not a bug Package: MySQL related
PHP Version: 5.1.4 OS: linux rh9
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: oren at telebox dot co dot il
New email:
PHP Version: OS:

 

 [2006-08-10 13:40 UTC] oren at telebox dot co dot il
Description:
------------
Hello the bug is 
where i write sql string with date info
i get strange result

Reproduce code:
---------------
$sql = "UPDATE `stat` SET `total`=TIME_TO_SEC(TIMEDIFF('".date("Y-m-d H:i:s")."',startime)) , endtime = '".date("Y-m-d H:i:s")."' WHERE `hendel`='$hendel'";


Expected result:
----------------
the result is lateness of 1 - 6 seconds


Actual result:
--------------
the way i find to bypass the problem is .
$nowsss=date("Y-m-d H:i:s");
$sql = "UPDATE `stat` SET `total`=TIME_TO_SEC(TIMEDIFF('".$nowsss."',startime)) , endtime = '".$nowsss."' WHERE `hendel`='$hendel'";


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-08-10 13:45 UTC] tony2001@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.


 [2006-08-10 14:03 UTC] oren at telebox dot co dot il
OK i explain my salf better the time difference in database are 1-6 sec 
for example the difference 
between 2006-08-10 15:39:22	and  2006-08-10 15:39:37 
is not 13 sec 
these 15 sec
 [2006-08-10 14:12 UTC] tony2001@php.net
The time difference in database is clearly not PHP bug.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 14:01:29 2024 UTC