在PHP中,now()
函數(shù)用于獲取當(dāng)前的日期和時(shí)間。它的語(yǔ)法如下:
now([string $format [, int $timestamp = ?) : string] )
參數(shù)說(shuō)明:
$format
(可選):指定輸出日期的格式。$timestamp
(可選):指定要返回的日期時(shí)間戳。默認(rèn)是當(dāng)前時(shí)間戳。示例:
$currentDateTime = now();
echo $currentDateTime; // 輸出類(lèi)似 "2022-07-01 12:34:56"
$currentDateTime = now('Y-m-d H:i:s');
echo $currentDateTime; // 輸出類(lèi)似 "2022-07-01 12:34:56"
$timestamp = 1659289496;
$currentDateTime = now($timestamp);
echo $currentDateTime; // 輸出類(lèi)似 "2022-07-01 12:34:56"
注意:now()
函數(shù)返回的是一個(gè) DateTime
對(duì)象,你可以對(duì)其進(jìn)行更多操作,如格式化、加減時(shí)間等。