我有格式为“mYd”的日期。如何修改此日期以格式化“Ydm”?为此,最好的功能应该是我可以添加旧格式和新格式的功能,但我该怎么做呢?
例如我有
$date = '01-2013-13'; // "m-Y-d"
我想收到:
$newDate = '2013-13-01'; // "Y-d-m"
见DateTime::createFromFormat()
和DateTime::format()
$date = DateTime::createFromFormat('m-Y-d', '01-2013-13');
echo $date->format('Y-m-d');
PHP 无法使用strtotime()
. 你必须做这样的事情:
function reformat($old_date)
{
$parts = explode('-', $old_date);
return $parts[1].'-'.$parts[2].'-'.$parts[0];
}
然后使用以下命令调用它:
$new_format = reformat($date);
或者,您可以使用DateTime::createFromFormat()
:
function reformat($old_date)
{
$new_date = DateTime::createFromFormat('m-Y-d', $old_date);
return $new_date->format('Y-m-d');
}
您可以使用DateTime
该类,例如:
$date = new DateTime('01-2013-13');
然后使用该format()
方法,例如:
$date->format('Y-m-d');