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.
この Date : Tue Oct 29 20:36:21 +1100 2013 を PHP で適切な形式 (Ymd H:i:s) に変更するにはどうすればよいですか?
これはどう?
$time = "Tue Oct 29 20:36:21 +1100 2013"; echo date ("Y-m-d H:i:s", strtotime($time));
これにより、現在のタイムゾーンで時間が表示されます。