Time Now()使用TimeZone设置

时间:2017-05-20 19:12:25

标签: php html phpmyadmin

我随着时间的推移在数据库中添加数据。我正在使用Now()获取当前时间,如下所示。



$upd_qry = "update tbl_quotes 
                set qu_status='".$_GET['status']."', qu_time=NOW()              
                where _quid='".$_GET['quotes_id']."'";
		$result=mysqli_query($mysqli,$upd_qry);




但我在美国有服务器,我需要亚洲时区。如何将自定义时区与Now()?

一起使用

由于

1 个答案:

答案 0 :(得分:0)

您应该使用CONVERT_TZ (dt, from_tz,to_tz)

CONVERT_TZ(now(),'US/Eastern','Asia/Tokio');

你必须检查你的from_tz和to_tz