14,958
edits
No edit summary |
|||
| Line 4: | Line 4: | ||
{| class="wikitable sortable nowrap" | {| class="wikitable sortable nowrap" | ||
|- | |- | ||
! style="text-align:right;" | | ! style="text-align:right;" | Weekday values from different approaches | ||
! Sunday | ! Sunday | ||
! Monday | ! Monday | ||
| Line 13: | Line 13: | ||
! Saturday | ! Saturday | ||
|- | |- | ||
! | ! [http://php.net/manual/en/function.date.php PHP date] with N format character: Weekday (ISO-8601) | ||
| 7 | | 7 | ||
| 1 | | 1 | ||
| Line 22: | Line 22: | ||
| 6 | | 6 | ||
|- | |- | ||
! | ! ([https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_weekday MySQL Weekday function]) | ||
| 6 | | 6 | ||
| 0 | | 0 | ||
| Line 31: | Line 31: | ||
| 5 | | 5 | ||
|- | |- | ||
! | ! ([https://support.office.com/zh-tw/article/WEEKDAY-%E5%87%BD%E6%95%B8-60e44483-2ed1-439f-8bd0-e404c190949a Excel Weekday function]) | ||
| 1 | | 1 | ||
| 2 | | 2 | ||
| Line 40: | Line 40: | ||
| 7 | | 7 | ||
|- | |- | ||
! | ! [http://php.net/manual/en/function.date.php PHP date] with w format character | ||
| 0 | | 0 | ||
| 1 | | 1 | ||
| Line 50: | Line 50: | ||
|- | |- | ||
|} | |} | ||
== Get the date == | == Get the date == | ||