📜  如何在 PHP 中获取当前日期和时间? - PHP (1)

📅  最后修改于: 2023-12-03 15:24:18.959000             🧑  作者: Mango

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

在 PHP 中获取当前日期和时间可以使用内置的日期和时间函数。下面介绍常用的几个函数:

  1. date() 函数

date() 函数用于将时间戳格式化为指定的日期/时间字符串。可以使用 date() 函数来获取当前日期和时间。

示例代码:

$current_date_time = date("Y-m-d H:i:s");
echo "当前日期和时间是:" . $current_date_time;

这段代码将输出类似下面的内容:

当前日期和时间是:2022-01-01 12:00:00
  1. time() 函数

time() 函数返回当前 Unix 时间戳。可以使用 time() 函数来获取当前日期和时间的时间戳。

示例代码:

$current_timestamp = time();
echo "当前时间戳是:" . $current_timestamp;

这段代码将输出类似下面的内容:

当前时间戳是:1641024000
  1. strtotime() 函数

strtotime() 函数将任何字符串的日期时间描述解析为 Unix 时间戳。可以使用 strtotime() 函数将日期字符串转换为时间戳。

示例代码:

$date_str = "January 1, 2022";
$current_timestamp = strtotime($date_str);
echo "时间戳是:" . $current_timestamp;

这段代码将输出类似下面的内容:

时间戳是:1640995200

以上是几个常用的函数,可以根据具体需求选择相应的函数进行使用。

参考资料:

  • PHP date 函数:https://www.php.net/manual/en/function.date.php
  • PHP time 函数:https://www.php.net/manual/en/function.time.php
  • PHP strtotime 函数:https://www.php.net/manual/en/function.strtotime.php