在我给出type =“date”的表单中,默认情况下,我将日期格式设为dd-mm-yyyy。如何将格式更改为yyyy-mm-dd。下面是示例代码,请帮我这个
答案 0 :(得分:-3)
使用PHP strtotime()
函数进行转换。假设你会得到
<?php
$date1 = "20-12-2018";
//now convert it using the strtotime function
$date2 = date('Y-m-d',strtotime($date1));
阅读完整文档Here