标签: php mysql laravel
我需要以字符串格式iso格式转换此日期以保存在mysql中。
string(16) "25/02/2015 11:10"
答案 0 :(得分:1)
date('Y-m-d H:i:s', strtotime('25-02-2015 11:10'));
您需要使用破折号而不是斜杠。