Changeset 1405660
- Timestamp:
- 04/27/2016 02:43:16 PM (10 years ago)
- File:
-
- 1 edited
-
jclocksgmt-wp/trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jclocksgmt-wp/trunk/readme.txt
r1405643 r1405660 72 72 73 73 74 | OFFEST | LOCATION | 75 |:---------|:------------| 76 | `GMT-12` | Eniwetok | 77 | `GMT-11` | Samoa| 78 | `GMT-10` | Hawaii| 79 | `GMT-9` | Alaska| 80 | `GMT-8` | PST, Pacific US | 81 | `GMT-7` | MST, Mountain US| 82 | `GMT-6` | CST, Central US| 83 | `GMT-5` | EST, Eastern US| 84 | `GMT-4` | Atlantic, Canada| 85 | `GMT-3` | Brazilia, Buenos Aries| 86 | `GMT-2` | Mid-Atlantic| 87 | `GMT-1` | Cape Verdes| 88 | `GMT 0` | Greenwich Mean Time| 89 | `GMT+1` | Berlin, Rome| 90 | `GMT+2` | Israel, Cairo| 91 | `GMT+3` | Moscow, Kuwait| 92 | `GMT+7` | Abu Dhabi, Muscat| 93 | `GMT+5` | Islamabad, Karachi| 94 | `GMT+6` | Almaty, Dhaka| 95 | `GMT+7` | Bangkok, Jakarta| 96 | `GMT+8` | Hong Kong, Beijing| 97 | `GMT+9` | Tokyo, Osaka| 98 | `GMT+10` | Sydney, Melbourne, Guam| 99 | `GMT+11` | Magadan, Soloman Is.| 100 | `GMT+12` | Fiji, Wellington, Auckland| 74 * `GMT-12` | Eniwetok 75 * `GMT-11` | Samoa 76 * `GMT-10` | Hawaii 77 * `GMT-9` | Alaska 78 * `GMT-8` | PST, Pacific US 79 * `GMT-7` | MST, Mountain US 80 * `GMT-6` | CST, Central US 81 * `GMT-5` | EST, Eastern US 82 * `GMT-4` | Atlantic, Canada 83 * `GMT-3` | Brazilia, Buenos Aries 84 * `GMT-2` | Mid-Atlantic 85 * `GMT-1` | Cape Verdes 86 * `GMT 0` | Greenwich Mean Time 87 * `GMT+1` | Berlin, Rome 88 * `GMT+2` | Israel, Cairo 89 * `GMT+3` | Moscow, Kuwait 90 * `GMT+7` | Abu Dhabi, Muscat 91 * `GMT+5` | Islamabad, Karachi 92 * `GMT+6` | Almaty, Dhaka 93 * `GMT+7` | Bangkok, Jakarta 94 * `GMT+8` | Hong Kong, Beijing 95 * `GMT+9` | Tokyo, Osaka 96 * `GMT+10` | Sydney, Melbourne, Guam 97 * `GMT+11` | Magadan, Soloman Is. 98 * `GMT+12` | Fiji, Wellington, Auckland 101 99 102 100 = What are the rules for formatting date and time? = 103 101 104 Time Formatting: 102 **Time Formatting:** 103 FORMAT| OUTPUT | MEANING 104 * `HH` | `19` | 24-hour format of hour with leading zero (two digits long). 105 * `hh` | `07` | 12-hour format of hour with leading zero (two digits long). 106 * `H` | `19` | 24-hour format of hour without leading zeros. 107 * `h` | `7` | 12-hour format of hour without leading zeros. 108 * `mm` | `01` | Minutes with the leading zero (two digits long). 109 * `m` | `1` | Minutes without the leading zero. 110 * `ss` | `08` | Seconds with the leading zero (two digits long). 111 * `s` | `8` | Seconds without the leading zero. 112 * `a` | `pm` | Lowercase am or pm. 113 * `A` | `PM` | Uppercase am or pm. 114 * `SSS` | `095` | Milliseconds with leading zeros (three digits long). 115 * `S` | `95` | Milliseconds without leading zeros. 105 116 106 | FORMAT | OUTPUT | MEANING | 107 |----------|:-------------:|:------| 108 | `HH` | `19` | 24-hour format of hour with leading zero (two digits long). | 109 | `hh` | `07` | 12-hour format of hour with leading zero (two digits long). | 110 | `H` | `19` | 24-hour format of hour without leading zeros. | 111 | `h` | `7` | 12-hour format of hour without leading zeros. | 112 | `mm` | `01` | Minutes with the leading zero (two digits long). | 113 | `m` | `1` | Minutes without the leading zero. | 114 | `ss` | `08` | Seconds with the leading zero (two digits long). | 115 | `s` | `8` | Seconds without the leading zero. | 116 | `a` | `pm` | Lowercase am or pm. | 117 | `A` | `PM` | Uppercase am or pm. | 118 | `SSS` | `095` | Milliseconds with leading zeros (three digits long). | 119 | `S` | `95` | Milliseconds without leading zeros. | 120 121 Date Formatting: 122 123 | FORMAT | OUTPUT | MEANING | 124 |----------|:-------------:|:------| 125 | `YYYY` | `2016` | Four-digit representation of the year. | 126 | `YY` | `16` | Two-digit representation of the year. | 127 | `MMMM` | `April` | Full textual representation of the month. | 128 | `MMM` | `Apr` | Three letter representation of the month. | 129 | `MM` | `04` | Month with the leading zero (two digits long). | 130 | `M` | `4` | Month without the leading zero. | 131 | `DDDD` | `Friday` | Full textual representation of the day of the week. | 132 | `DDD` | `Fri` | Three letter representation of the day of the week. | 133 | `DD` | `01` | Day of the month with leading zero (two digits long). | 134 | `D` | `1` | Day of the month without leading zero. | 117 **Date Formatting:** 118 FORMAT| OUTPUT | MEANING 119 * `YYYY` | `2016` | Four-digit representation of the year. 120 * `YY` | `16` | Two-digit representation of the year. 121 * `MMMM` | `April` | Full textual representation of the month. 122 * `MMM` | `Apr` | Three letter representation of the month. 123 * `MM` | `04` | Month with the leading zero (two digits long). 124 * `M` | `4` | Month without the leading zero. 125 * `DDDD` | `Friday` | Full textual representation of the day of the week. 126 * `DDD` | `Fri` | Three letter representation of the day of the week. 127 * `DD` | `01` | Day of the month with leading zero (two digits long). 128 * `D` | `1` | Day of the month without leading zero. 135 129 136 130 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.