将日期字符串转换为ISO php格式

时间:2015-02-25 13:12:42

标签: php mysql laravel

我需要以字符串格式iso格式转换此日期以保存在mysql中。

string(16) "25/02/2015 11:10"

1 个答案:

答案 0 :(得分:1)

date('Y-m-d H:i:s', strtotime('25-02-2015 11:10'));

您需要使用破折号而不是斜杠。