📜  从数据库 php 代码示例中获取月份

📅  最后修改于: 2022-03-11 14:53:44.580000             🧑  作者: Mango

代码示例2
echo 'Day' . date('d', strtotime($row['Date']));
echo 'Month' . date('m', strtotime($row['Date']));
echo 'Year' . date('Y', strtotime($row['Date']));