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.
私は次のような文字列を取得しました:
[ 15.04.2012 15:48:03 ] blahblah [ 17.02.2012 22:49:11 ] blahblah [ 18.11.2011 10:11:39 ] blahblah
日時はUTCですが、これらの日時文字列をutc + 8日時に置き換えるにはどうすればよいですか?
タイムゾーンが+0であることがわかっていて、それをutc + 8に変更したい場合は、8時間を追加してみませんか?
echo date('d.m.Y G:i:s', strtotime('+8 hours', strtotime('15.04.2012 15:48:03'))); // 15.04.2012 23:48:03