📜  datetime 获取月份 php 代码示例

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

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