我想使用php将26-Feb-2013类型日期fomat转换为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格式 但我想知道任何简单的方法来做到这一点 有没有办法做到这一点?
答案 0 :(得分:1)
$date='26-Feb-2013';
echo date("d-m-Y", strtotime($date)); // prints 26-02-2013
答案 1 :(得分:0)
试试这个:
$date='26-Feb-2013';
$datew= date('d-m-Y',strtotime($date));
修复抱歉应该在提交之前进行测试
答案 2 :(得分:0)
试试这个
$date='26-Feb-2013';
echo $datew = date('d-m-Y',strtotime($date));