如何在页面中存储phpmyadmin时转换日期格式

时间:2014-10-27 10:06:07

标签: php date phpmyadmin datepicker

如何将网页中的正常输入日期格式 dd-mm-yyyy 更改为 yyyy-mm-dd ,同时存储在php我的管理员

2 个答案:

答案 0 :(得分:3)

你可以用strtotime()转换日期;

  $dateToday = date("d-m-Y");
    $newDate = date("Y-m-d", strtotime($dateToday));

然后您可以将数据存储到数据库中。

答案 1 :(得分:2)

虽然您可以使用strtotime,但我更喜欢DateTime对象。

//The second parameter being the string from the database.
$date = DateTime::createFromFormat('d-m-Y', '27-10-2014');
echo $date->format('Y-m-d');