ID: 26236
Updated by: [EMAIL PROTECTED]
Reported By: rm at duxx dot nl
-Status: Closed
+Status: Bogus
Bug Type: MySQL related
Operating System: Winnt4
PHP Version: 4.3.4
New Comment:
changed status (closed->bogus)
Previous Comments:
------------------------------------------------------------------------
[2003-11-14 04:04:52] rm at duxx dot nl
Yoe're right: 11.13.2003-09:38:34; only one hour because of the
handling of timezones. Thanks !
------------------------------------------------------------------------
[2003-11-14 03:51:06] Leblanc at phpzipscript dot org
You mistake is here :
echo date("m.d.Y-h:m:s", 1068716314);
should be :
echo date("m.d.Y-h:i:s", 1068716314);
'm' is for month... not minutes (which is 'i').
------------------------------------------------------------------------
[2003-11-14 03:09:42] rm at duxx dot nl
Both Apache and MySQL are running on the same server.
------------------------------------------------------------------------
[2003-11-13 19:22:17] [EMAIL PROTECTED]
Is the MySQL and PHP running on the same server?
------------------------------------------------------------------------
[2003-11-13 07:16:33] rm at duxx dot nl
Description:
------------
In MYSQL this was the result of
SELECT CURDATE(), CURTIME(), UNIX_TIMESTAMP()
+------------+-----------+------------------+
| CURDATE() | CURTIME() | UNIX_TIMESTAMP() |
+------------+-----------+------------------+
| 2003-11-13 | 10:38:34 | 1068716314 |
+------------+-----------+------------------+
Under PHP however the result of
echo date("m.d.Y-h:m:s", 1068716314); // the same timestamp
I get
11.13.2003-09:11:34
So you can see 10:38:34 and 9:11:34 for the same timestamp.
Now one hour could be explained because of a the timzone of +1, where
where did those 27 minutes go ?
(I didn't find this on version 4.1.3)
Reproduce code:
---------------
Expected result:
----------------
Actual result:
--------------
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=26236&edit=1