は私がなぜPHPののstrtotime関数
$date = "12-22-2011";
echo $newDateFormat = date("Y-m-d", strtotime($date));
// Output 1970-01-01
// But when i replace "-" with "/" I get proper output
$date = "12/22/2011";
echo $newDateFormat = date("Y-m-d", strtotime($date));
// Output 2011-12-22
次私が持っている別の の形式に日付を変換するためのPHPのstrtotimeの機能を使用していますか? 何かを受け入れ、適切な日付形式に変換する他の関数がありますか?このようdd-mm-yyyy
やmm-dd-yyyy
ようなフォーマットを使用して
私はあなたの例をhttp://writecodeonline.com/php/で試して、最初のエコーで '2019-04-03'を得ました。 –