我在stackoverflow上搜索了帖子,发现了一些类似的帖子。但我认为这是另一个。
我的PHP& Mysql服务器的时区都设置为“UTC”。
在一个表中我使用了一个时间戳字段,值为“2010-11-08 02:54:15”,我用的是这样的sql:
SELECT id,
updated,
second( updated ) ,
unix_timestamp( updated )
FROM `transaction`
where id = 56
得到了这个:
id updated second unix
--------------------------------------------
56 2010-11-08 02:54:15 15 1289184879
然后我在php中使用它:
echo strtotime("2010-11-08 02:54:15");
得到了这个:
1289184855
不同的是24秒。
我在http://www.unixtimestamp.com/index.php上查看这些时间戳 php结果是正确的。那么mysql unix_timestamp函数有bug吗? Mysql版本是:5.1.41
答案 0 :(得分:4)
答案 1 :(得分:0)
我无法在Linux上的MySQL 5.1.41中重现这一点。也许这只是Windows?
snip@ssnip:~$ mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 295
Server version: 5.1.41
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select unix_timestamp("2010-11-08 02:54:15");
+---------------------------------------+
| unix_timestamp("2010-11-08 02:54:15") |
+---------------------------------------+
| 1289206455 |
+---------------------------------------+
1 row in set (0.00 sec)
mysql> exit
Bye
maia@sloodle:~$ php -a
Interactive shell
php > echo strtotime("2010-11-08 02:54:15");
1289206455
php > exit
snip@ssnip:~$ mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 297
Server version: 5.1.41
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select from_unixtime(1289206455);
+---------------------------+
| from_unixtime(1289206455) |
+---------------------------+
| 2010-11-08 02:54:15 |
+---------------------------+
1 row in set (0.00 sec)