PHP 中的纽约时区
作者:迹忆客
最近更新:2023/03/28
浏览次数:
本篇文章介绍如何在 PHP 中获取纽约时区的时间。
PHP 中的纽约时区
PHP 手册提供了每个时区的关键字,可在此处找到。 根据 PHP 手册,纽约时区的关键字是 America/New_York。
但是我们如何从 PHP 中的 New_York 时区获取时间呢? 为此,我们需要使用两种方法,第一种是设置时区,第二种是获取时区。
让我们将时区设置为 New_York,然后显示当前时区。
<?php
date_default_timezone_set("America/New_York");
echo date_default_timezone_get();
?>
上面的代码将设置时区,然后通过 date_default_timezone_get()
方法回显它。 输出是:
America/New_York
现在让我们尝试获取纽约时区的日期和时间。 要获取某个时区的日期和时间,我们需要使用 PHP 的 date()
方法,该方法用于格式化日期和时间; 它包括关键字,如下所述。
- d - 用于一个月中的第几天(01 到 31)
- m - 用于获取月份(01 到 12)
- Y - 用于获取年份(四位数)
- l - 用于获取星期几(小写 L)
- H - 用于获取小时(00 到 23)的 24 小时格式的时间
- h - 用于获取 12 小时格式的时间,前导零(01 到 12)
- i - 用于获取带前导零的分钟(00 到 59)
- s - 用于获取带前导零的秒数(00 到 59)
- a - 用于 Ante meridiem 和 Post meridiem(am 或 pm) 现在让我们看看如何获取 New_York 时区的不同格式的日期。
<?php
date_default_timezone_set("America/New_York");
echo "The timezone is: ".date_default_timezone_get();
echo "<br>Today is " . date("Y/m/d") . " in New York <br>";
echo "Today is " . date("d/m/Y") . " in New York <br>";
echo "Today is " . date("Y.m.d") . " in New York <br>";
echo "Today is " . date("d.m.Y") . " in New York <br>";
echo "Today is " . date("Y-m-d") . " in New York <br>";
echo "Today is " . date("d-m-Y") . " in New York <br>";
echo "Today is " . date("l");
?>
上面的代码将以不同的格式显示纽约时区的日期。 查看输出:
The timezone is: America/New_York
Today is 2022/09/19 in New York
Today is 19/09/2022 in New York
Today is 2022.09.19 in New York
Today is 19.09.2022 in New York
Today is 2022-09-19 in New York
Today is 19-09-2022 in New York
Today is Monday
现在让我们看看如何获取 New_York 时区的时间。
<?php
date_default_timezone_set("America/New_York");
echo "The timezone is: ".date_default_timezone_get();
echo "<br>The current time in New York is " . date("h:i:sa");
?>
上面的代码将显示 New_York 的当前时间。 查看输出:
The timezone is: America/New_York
The current time in New York is 03:32:52am
相关文章
如何在 PHP 中获取时间差的分钟数
发布时间:2023/03/29 浏览次数:183 分类:PHP
-
本文介绍了如何在 PHP 中获取时间差的分钟数,包括 date_diff()函数和数学公式。它包括 date_diff()函数和数学公式。