我正在尝试将此日期格式mm-dd-yyyy转换为yyyy-mm-dd 我正在使用strtotime功能,但它没有正确转换。 日期(' Y-m-d',strtotime(' 06-15-2014'))
以1970-01-01 01:00:00
格式返回日期答案 0 :(得分:0)
字符串函数也可以。
$in = "05-14-2004"; // why would you even write dates like this?
$out = substr($in,-4)."-".substr($in,5);