PHP - 将字符串转换为dateTimeFormat MYSQL

时间:2017-11-20 08:31:25

标签: php mysql date-formatting

也许这个问题非常简单,但需要帮助,因为我在google搜索不是fount。 我使用simple_html_dom从网页上抓取一些文字,但我在格式化日期时遇到了一些问题:

21 Oct 17, 15:38:13

我使用PHP并希望将其转换为日期时间格式并插入MYSQL,任何人都知道吗?

1 个答案:

答案 0 :(得分:1)

    $date='21 Oct 17, 15:38:13';


$newDate = date("d-m-y H:i:s", strtotime($date));
    echo $newDate;

输出是:

21-10-17 15:38:13

For more infos in problems like this