gpt4 book ai didi

php - 如何在 PHP 中获取当前日期和时间?

转载 作者:IT老高 更新时间:2023-10-28 11:35:46 24 4
gpt4 key购买 nike

哪个 PHP 函数可以返回当前日期/时间?

最佳答案

时间将按您的服务器时间计算。一个简单的解决方法是使用 date_default_timezone_set 手动设置时区。在 date() 之前或 time()调用函数。

我在墨尔本,Australia所以我有这样的事情:

date_default_timezone_set('Australia/Melbourne');

或者另一个例子是洛杉矶 - US :

date_default_timezone_set('America/Los_Angeles');

您还可以通过以下方式查看服务器当前所在的时区:

date_default_timezone_get();

比如:

$timezone = date_default_timezone_get();
echo "The current server timezone is: " . $timezone;

所以你的问题的简短答案是:

// Change the line below to your timezone!
date_default_timezone_set('Australia/Melbourne');
$date = date('m/d/Y h:i:s a', time());

那么所有时间都将是您刚刚设置的时区:)

关于php - 如何在 PHP 中获取当前日期和时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/470617/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com