我想使用 php 将 26-Feb-2013 类型的日期格式转换为 26-02-2013 格式我可以在很长一段时间内做到这一点,如下所示
$date='26-Feb-2013';
$datew=explode('-',$date);
$mounth=$datew[1];
if($mounth=='Jan'){
$mounth=='Jan'
}
elseif($mounth=='feb'){
$mounth=='Feb'
}
并再次使用 implode 函数转换 26-02-2013 格式,但我想知道有什么简单的方法可以做到这一点有没有办法做到这一点?