Lines Matching full:day
22 // Day
23 '%a' => 'D', // An abbreviated textual representation of the day Sun through Sat
24 '%A' => 'l', // A full textual representation of the day Sunday through Saturday
25 '%d' => 'd', // Two-digit day of the month (with leading zeros) 01 to 31
26 …'%e' => 'j', // Day of the month, with a space preceding single digits. Not implemented as describ…
27 '%j' => '', // NOT SUPPORTED Day of the year, 3 digits with leading zeros 001 to 366
28 …'%u' => 'N', // ISO-8601 numeric representation of the day of the week 1 (for Monday) through 7…
29 …'%w' => 'w', // Numeric representation of the day of the week 0 (for Sunday) through 6 (for Sat…
73 // Day
74 'd' => '%d', // Day of the month, 2 digits with leading zeros 01 to 31
75 'D' => '%a', // A textual representation of a day, three letters Mon through Sun
76 'j' => '%e', // Day of the month without leading zeros 1 to 31
77 …'l' => '%A', // (lowercase 'L') A full textual representation of the day of the week Sunday thr…
78 …'N' => '%u', // ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0) 1 (…
79 …'S' => '', // NOT SUPPORTED English ordinal suffix for the day of the month, 2 characters st, n…
80 …'w' => '%w', // Numeric representation of the day of the week 0 (for Sunday) through 6 (for Sat…
81 'z' => '', // NOT SUPPORTED The day of the year (starting from 0) 0 through 365