PHP日期字符串格式

前端之家收集整理的这篇文章主要介绍了PHP日期字符串格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Convert one date format into another in PHP14个
我有一个字符串mm-dd-yyyy,我从表单中获取,我想将它存储在数据类型DATE(yyyy-mm-dd)的数据库中.

如何格式化字符串并将其保存在数据库中?

$new_format = date("Y-m-d",strtotime('04-28-2012'));

要么

$date = new DateTime('04-28-2012');
$new_format = $date->format('Y-m-d');

或者在PHP 5.5中

$new_format = (new DateTime('04-28-2012'))->format('Y-m-d');
原文链接:https://www.f2er.com/php/135338.html

猜你在找的PHP相关文章