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.
TwitterのAPIは、次の形式で日付を開始します。
Thu, 18 Oct 2012 09:37:01 +0000
私のデータベースで、PHPを使用してこれを日時形式に変換することは可能ですか?例えば
2012-10-18 09:37:01
date( 'Y-m-d H:i:s', strtotime("Thu, 18 Oct 2012 09:37:01 +0000") );
フォーマットから日時オブジェクトを使用する
$date = DateTime::createFromFormat('D, j M Y H:i:s +0000', 'Thu, 18 Oct 2012 09:37:01 +0000'); echo $date->format('Y-m-d H:i:s');