我尝试使用以下代码将日期格式从 dmy 更改为 ymd,但是使用时我得到了错误的日期。
我的代码
$sdate11=date("Y-m-d", strtotime($_POST["txtstartdates"]) );
$sdate111=date("Y-m-d", strtotime($_POST["txtenddates"]) );
插入的日期是
30-05-2013 and 31-05-2013
它返回的日期是
2035-11-03 and 2036-11-02
你能帮我找出这里的问题并解决吗
谢谢你。