toUTCString()

このエントリーをはてなブックマークに追加

Date.toUTCString()はDateオブジェクトの日付(UTC)を文字列で返すメソッドです。

UTCとはUniversal Time, Coordinatedの略で協定世界時間のこと。

var d = new Date();
d.toUTCString();//Sun, 18 Nov 2012 14:31:20 GMT

ローカル時間の文字列で返したい場合はDate.toString()を利用します。

なお、任意の日時のUTC日時を取得するには、Date.getTime()Date.setTime()を利用して以下のように指定ができます。(以下のサンプルは1日後のUTC日時を取得する方法)

var expire = new Date();
expire.setTime( expire.getTime() + 1000 * 60 * 60 * 24 );
alert(expire.toUTCString());

登録日 : 2012年11月18日 最終更新日 : 2013年9月26日

同じカテゴリー(Date)のエントリー

検索

スポンサードリンク

バージョン

リファレンス