PHPの\DateTimeクラスを使用して日付のみを取得する方法 現在の日付を取得する例:$date = new \DateTime(); $dateOnly = $date->format('Y-m-d'); echo $dateOnly;>>More