如何在php中更改日期格式2015年12月21日至21-12-2015

时间:2016-02-03 12:51:42

标签: php

我想更改日期格式,如

$date ="21 dec '15";

$date ="21-12-2015";

如何在php中实现。

3 个答案:

答案 0 :(得分:6)

$date = DateTime::createFromFormat('!m', $result['month']);

echo $date->format('F');

F stands for "month name",

答案 1 :(得分:0)

使用此

$date = "21 dec '2015"; #your date 
$replaced_date = str_replace("'","",$date);
$new = date_create($replaced_date);
$new_date = date_format($new, "d-m-Y"); # restructer the date
echo $new_date ;

Phpfiddle Preview

答案 2 :(得分:0)

$date = new DateTime(str_replace("'", '20', "21 dec '15"));

var_dump($date->format('d-m-Y'));