发表日子 2013-05-31 20:44:00
最后修正 2023-11-22 15:29:06
<script type="text/javascript"> var objDate; objDate = new Date("Dec 04, 2024 04:19:43 GMT+0100"); <script>We are trying to get the PHP date format string to format date time to form the pipeline PHP DateTime() => js Date() => document.write() to output on screen. Here is the summary of cases we tested for you:
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
0 | Dec 04, 2024 04:19:43 GMT+0100 | + | + | + | + | + | + |
1 | Dec 04 2024 04:19:43 GMT+0100 | + | + | + | + | + | + |
2 | Dec 04, 2024 04:19:43 GMT+1 | + | + | + | + | + | + |
3 | 2024-12-04 04:19:43 GMT+0100 | - | + | - | - | + | + |
4 | 2024-12-04 04:19:43 GMT+01:00 | - | + | - | - | + | + |
5 | 2024-12-04 04:19:43 GMT+100 | - | + | - | - | + | + |
6 | 04 Dec 2024 04:19:43+01:00 | - | + | - | - | - | - |
7 | Dec 04 2024 04:19:43 GMT+1:00 | - | + | + | - | + | + |
8 | Dec 04, 2024 04:19:43 GMT+01:00 | - | + | + | - | + | + |
9 | 2024-12-04 04:19:43 GMT+1 | - | + | - | - | + | + |
10 | 2024-12-04 04:19:43 | - | + | - | - | + | + |
11 | 2024-12-04T04:19:43+01:00 | + | + | + | + | + | - |
12 | 2024-12-04 04:19:43+01:00 | - | + | - | - | - | - |
13 | 12-04-2024 04:19:43 GMT+0100 | + | + | - | - | - | + |
14 | 12/04, 2024 04:19:43 GMT+0100 | + | + | + | - | + | + |
15 | 04-Dec-2024 04:19:43 GMT+0100 | - | + | - | + | - | + |
JavaScript is very English speaking. In effect, among the 3 first universal formats, the English month abbreviation is used. As it can be observed that no pure numerical date string is found like "2024-12-04 04:19:43" to fit JavaScript syntax in all browsers. Please check this with your preferred browser.
Below, the bold date time outputs at the right hand side of => are the JavaScript Date Class results.
For example, Dec 04, 2024 04:19:43 GMT+0100 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
0 | Dec 04, 2024 04:19:43 GMT+0100 | + | + | + | + | + | + |
This format is valid for all browsers in our hands, including Internet Explorer,
Google Chrome, Firefox, Safari, Opera, Mobile Safari.
On PHP, you get this DateTime format of the current time by
<?php $objDateTime = new DateTime(); $strDateTime = $objDateTime->format("M d, Y H:i:s \G\M\TO"); ?>One observes that this is the Standard English Date Time expression.
For example, Dec 04 2024 04:19:43 GMT+0100 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
1 | Dec 04 2024 04:19:43 GMT+0100 | + | + | + | + | + | + |
This format is also valid for all browsers in our hands, including IE,
Google Chrome, Firefox, Safari, Opera, Safari Mobile.
On PHP, you get this DateTime format of the current time by
<?php $objDateTime = new DateTime(); $strDateTime = $objDateTime->format("M d Y H:i:s \G\M\TO"); ?>One notes that this is another English Date Time expression with timezone.
For example, Dec 04, 2024 04:19:43 GMT+1 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
2 | Dec 04, 2024 04:19:43 GMT+1 | + | + | + | + | + | + |
All following date time strings are good for some browsers, but unfortunately bad for others.
For example, 2024-12-04 04:19:43 GMT+0100 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
3 | 2024-12-04 04:19:43 GMT+0100 | - | + | - | - | + | + |
For example, 2024-12-04 04:19:43 GMT+01:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
4 | 2024-12-04 04:19:43 GMT+01:00 | - | + | - | - | + | + |
For example, 2024-12-04 04:19:43 GMT+01:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
5 | 2024-12-04 04:19:43 GMT+100 | - | + | - | - | + | + |
For example, 04 Dec 2024 04:19:43+01:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
6 | 04 Dec 2024 04:19:43+01:00 | - | + | - | - | - | - |
For example, Dec 04 2024 04:19:43 GMT+1:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
7 | Dec 04 2024 04:19:43 GMT+1:00 | - | + | + | - | + | + |
For example, Dec 04, 2024 04:19:43 GMT+01:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
8 | Dec 04, 2024 04:19:43 GMT+01:00 | - | + | + | - | + | + |
For example, 2024-12-04 04:19:43 GMT+1 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
9 | 2024-12-04 04:19:43 GMT+1 | - | + | - | - | + | + |
For example, 2024-12-04 04:19:43 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
10 | 2024-12-04 04:19:43 | - | + | - | - | + | + |
For example, 2024-12-04T04:19:43+01:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
11 | 2024-12-04T04:19:43+01:00 | + | + | + | + | + | - |
For example, 2024-12-04 04:19:43+01:00 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
12 | 2024-12-04 04:19:43+01:00 | - | + | - | - | - | - |
For example, 12-04-2024 04:19:43 GMT+0100 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
13 | 12-04-2024 04:19:43 GMT+0100 | + | + | - | - | - | + |
For example, 12/04, 2024 04:19:43 GMT+0100 =>
# | js new Date() Feed | IE | Chrome | Firefox | Safari | Opera | Mobile |
---|---|---|---|---|---|---|---|
14 | 12/04, 2024 04:19:43 GMT+0100 | + | + | + | - | + | + |
Below, we summarize the date time feed checked above in a single table under your current browser.
# | PHP DateTime->format | js new Date() Feed | js new Date() outputs |
---|---|---|---|
0 | M d, Y H:i:s \G\M\TO | Dec 04, 2024 04:19:43 GMT+0100 | |
1 | M d Y H:i:s \G\M\TO | Dec 04 2024 04:19:43 GMT+0100 | |
2 | Dec 04, 2024 04:19:43 GMT+1 | ||
3 | Y-m-d H:i:s \G\M\TO | 2024-12-04 04:19:43 GMT+0100 | |
4 | Y-m-d H:i:s \G\M\TP | 2024-12-04 04:19:43 GMT+01:00 | |
5 | 2024-12-04 04:19:43 GMT+100 | ||
6 | d M Y H:i:s \G\M\TP | 04 Dec 2024 04:19:43+01:00 | |
7 | Dec 04 2024 04:19:43 GMT+1:00 | ||
8 | M d Y H:i:s \G\M\TP | Dec 04, 2024 04:19:43 GMT+01:00 | |
9 | 2024-12-04 04:19:43 GMT+1 | ||
10 | Y-m-d H:i:s | 2024-12-04 04:19:43 | |
11 | c | 2024-12-04T04:19:43+01:00 | |
12 | Y-m-d H:i:sP | 2024-12-04 04:19:43+01:00 | |
13 | m-d-Y H:i:s\G\M\TO | 12-04-2024 04:19:43 GMT+0100 | |
14 | m/d, Y H:i:s\G\M\TO | 12/04, 2024 04:19:43 GMT+0100 | |
15 | d-M-Y H:i:s \G\M\TO | 04-Dec-2024 04:19:43 GMT+0100 |
Here the column "PHP DateTime->format" gives the format string to be used to obtain the "js new Date() Feed" column for JavaScript Date Constructor. The last column "js new Date() outputs" is JavaScript running results given by new Date(Date-Time String):
<script type="text/javascript"> document.write(new Date("Dec 04, 2024 04:19:43 GMT+0100")); </script>