简体   繁体   English

Mysql / Php - 当前日期和时间

[英]Mysql/Php - Current date and time

I have a query that I want to update a column with the current date time. 我有一个查询,我想用当前日期时间更新列。 The column I want to update is of the type datetime. 我想要更新的列是datetime类型。

How can I get it and set it? 我怎样才能得到它并设置它?

else{ //If the last update is NULL, It must be players first page load. So set datetime equal to NOW
    $query = "UPDATE `stats` SET `last_ap_update` =    WHERE `member_id` = {$_SESSION['SESS_MEMBER_ID']}"; 
    $queryresult = mysql_query($insertqry);
}

Using NOW() in the query would provide this. 在查询中使用NOW()将提供此功能。

else{ //If the last update is NULL, It must be players first page load. So set datetime equal to NOW
    $query = "UPDATE `stats` SET `last_ap_update` =  NOW()  WHERE `member_id` = {$_SESSION['SESS_MEMBER_ID']}"; 
    $queryresult = mysql_query($insertqry);
}

But if this gets updated anytime the table updates, I would suggest changing the column to TIMESTAMP and this will automatically update to the current time for you anytime that record changes. 但是如果在表更新时随时更新,我建议将列更改为TIMESTAMP ,这将在记录更改时自动更新为当前时间。

else{ //If the last update is NULL, It must be players first page load. So set datetime equal to NOW
    $query = "UPDATE `stats` SET `last_ap_update` =  '".gmdate("Y-m-d H:i:s")."'  WHERE `member_id` = {$_SESSION['SESS_MEMBER_ID']}"; 
    $queryresult = mysql_query($insertqry);
}

You can use any format you want instead of gmdate("Ymd H:i:s") 你可以使用你想要的任何格式而不是gmdate("Ymd H:i:s")

你可以使用mysql函数NOW(),或者你可以在那里设置$ _SERVER ['REQUEST_TIME'],这样查询就会被mysql缓存。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM