要使用PHP的date_format函數(shù)來格式化日期,首先需要提供一個日期對象,然后指定所需的格式,例如:
$date = new DateTime('2022-12-31');
$formatted_date = date_format($date, 'Y-m-d');
echo $formatted_date; // 輸出:2022-12-31
在上面的示例中,我們首先創(chuàng)建了一個DateTime對象,然后使用date_format函數(shù)將其格式化為’Y-m-d’的格式。您可以根據(jù)自己的需求選擇不同的格式,例如’d/m/Y’、'Y年m月d日’等等。