Date 1

Date クラスなど

DateTimeImmutable class
$now = new DateTimeImmutable();
echo $now->format('Y-m-d');
結果 2026-06-07
$tz = $now->getTimezone();
echo $tz->getName();
結果 UTC
DateTime class
$now = new DateTime();
echo $now->format('Y-m-d');
結果 2026-06-07