duanfu5239 2013-05-29 21:35
浏览 246
已采纳

在php中将dd-mm-yyyy转换为yyyy-mm-dd

I tried the following code to change the dateformat from dmy to ymd, but when using i got wrong dates.

My code

$sdate11=date("Y-m-d", strtotime($_POST["txtstartdates"]) );
$sdate111=date("Y-m-d", strtotime($_POST["txtenddates"]) );

dates inserted were

30-05-2013 and  31-05-2013

the date it returned was

2035-11-03 and 2036-11-02 

could you please help me to find what was the problem here and solve it

Thank you.

  • 写回答

5条回答 默认 最新

  • dongyuchen9276 2013-05-29 21:39
    关注

    Try with split like

    $a = split('-',$_POST["txtstartdates"]);
    

    or you can use explode even like

    $a = explode('-',$_POST["txtstartdates"]);
    $my_new_date = $a[2].'-'.$a[1].'-'.$a[0];
    

    Here strtotime will not work for the format dd-mm-yyyy

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部