在PHP中獲取年月日可以使用日期函數(shù)date()
或者DateTime
類來實(shí)現(xiàn)。以下是兩種方法:
date()
函數(shù)獲取當(dāng)前年月日:$year = date('Y');
$month = date('m');
$day = date('d');
echo "年:$year,月:$month,日:$day";
DateTime
類獲取年月日:$date = new DateTime();
$year = $date->format('Y');
$month = $date->format('m');
$day = $date->format('d');
echo "年:$year,月:$month,日:$day";
以上兩種方法都可以獲取當(dāng)前的年月日,你可以根據(jù)自己的需求選擇其中一種方法來使用。