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.
次を使用して、サーバーのタイムゾーンとGMT時間の差(秒単位)を取得できることを知っています:
$diff = date("Z");
同じものを取得する方法はありますが、特定の日付です。たとえば、DST が次の日曜日に終了するが、GMT で次の火曜日の時刻を設定する必要がある場合。次の火曜日のタイムゾーン オフセットを確認するにはどうすればよいですか?
これには、日付の 2 番目のパラメーターを使用できます。
date('Z', strtotime("2013-08-27"));