PHPで文字列から日付を作成する方法 strtotime関数を使用する方法:$dateString = "2024-02-07"; $date = date("Y-m-d", strtotime($dateString)); echo $date;>>More