phpmyadmin db中的时间戳不正确

时间:2015-02-18 16:31:44

标签: php mysql phpmyadmin timestamp wamp

我的数据库中的时间戳与我输入的内容不同。

在我的php函数中,我有一个sql查询,它插入一个包含时间戳的值的表中。 phpmyadmin数据库中时间戳的小时部分已关闭。有时它是4小时,有时是5小时。

function fun ($pdo, $val, $time){
    $stmt = $pdo->prepare("INSERT INTO table (col1, inputtime) VALUES($val, '$time')");
    $stmt->execute;
}

这是php,mysql还是wamp问题?

utc_timestamp提前5个小时。

0 个答案:

没有答案