在PHP中,now()
函数用于获取当前的日期和时间。它的语法如下:
now([string $format [, int $timestamp = ?) : string] )
参数说明:
$format
(可选):指定输出日期的格式。$timestamp
(可选):指定要返回的日期时间戳。默认是当前时间戳。示例:
$currentDateTime = now();
echo $currentDateTime; // 输出类似 "2022-07-01 12:34:56"
$currentDateTime = now('Y-m-d H:i:s');
echo $currentDateTime; // 输出类似 "2022-07-01 12:34:56"
$timestamp = 1659289496;
$currentDateTime = now($timestamp);
echo $currentDateTime; // 输出类似 "2022-07-01 12:34:56"
注意:now()
函数返回的是一个 DateTime
对象,你可以对其进行更多操作,如格式化、加减时间等。