duanfu5239 2013-05-30 05:35
浏览 245
已采纳

在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-30 05: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条)

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型