PHP中将数字转换为月份名称的方法
要将数字转换为PHP中的月份名称,代码如下-
示例
<?php $date = "2019-11-11"; echo "Displaying date...\n"; echo "Date = $date"; $month_name = date("F", mktime(0, 0, 0, 11, 10)); echo "\nMonth = ".$month_name."\n"; echo "\nDisplaying updated date...\n"; echo date('Y-m-d', strtotime($date. ' + 20 days')); ?>
输出结果
这将产生以下输出-
Displaying date... Date = 2019-11-11 Month = November Displaying updated date... 2019-12-01
示例
现在让我们来看另一个示例-
<?php $date = "2019-11-11"; echo "Displaying date...\n"; echo "Date = $date"; $month_name = date("F", mktime(0, 0, 0, 11, 10)); echo "\nMonth = ".$month_name."\n"; echo "\nDisplaying updated date...\n"; echo date('Y-m-d', strtotime($date. ' + 20 days')); $val = DateTime::createFromFormat('!m', 12); $month_name2 = $val->format('F'); echo "\nMonth = ".$month_name2."\n"; ?>
输出结果
这将产生以下输出-
Displaying date... Date = 2019-11-11 Month = November Displaying updated date... 2019-12-01 Month = December