显示带有自定义月份名称的日期,php
Show date with custom month name, php
我是 php 的新手,不确定如何使用字符串或日期。我有自定义月份名称,存储在数组中:
$months = ['1' => 'my Jan', '2'=>'my Feb', '3'=>'my Mar', '4'=>'my Apr', //etc.];
我想显示带有这些月份名称的日期,目前我显示:
date_format(new DateTime($route->start_date), 'd F Y')
这给出 01 January 2016
我需要 01 my Jan 2016
.
谢谢
希望这会有所帮助。
<?php
$months = ['1' => 'my Jan', '2'=>'my Feb', '3'=>'my Mar', '4'=>'my Apr'];
$date = new DateTime($route->start_date);
echo '<br>'.$date->format('d').' '.$months[$date->format('n')].' '.$date->format('Y');
?>
我是 php 的新手,不确定如何使用字符串或日期。我有自定义月份名称,存储在数组中:
$months = ['1' => 'my Jan', '2'=>'my Feb', '3'=>'my Mar', '4'=>'my Apr', //etc.];
我想显示带有这些月份名称的日期,目前我显示:
date_format(new DateTime($route->start_date), 'd F Y')
这给出 01 January 2016
我需要 01 my Jan 2016
.
谢谢
希望这会有所帮助。
<?php
$months = ['1' => 'my Jan', '2'=>'my Feb', '3'=>'my Mar', '4'=>'my Apr'];
$date = new DateTime($route->start_date);
echo '<br>'.$date->format('d').' '.$months[$date->format('n')].' '.$date->format('Y');
?>