Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の日付をYmd形式に変換すると、なぜ1969になるのですか。
$date1="01/02/2012"; echo date('Y-m-d',$date1);
注:これはphp4です。
日付文字列をタイムスタンプに変換する必要があります。
echo date('Y-m-d', strtotime($date1));