フォームから取得した文字列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');
試す
$date = DateTime::createFromFormat("m-d-Y", '02-15-2012');
echo $date->format('Y-m-d H:i:s') , "\n";
出力
2012-02-15 23:54:52