Lines Matching refs:in

10  * Allows conversion between the two format strings used in PHP. Not all placeholders are available in both
14 * Do not use this where formats are used in creating machine readable data (like feeds, APIs whatever). This is
46 '%H' => 'H', // Two digit representation of the hour in 24-hour format 00 through 23
47 '%k' => 'G', // Two digit representation of the hour in 24-hour format, with a space preceding single digits 0 through 23
48 '%I' => 'h', // Two digit representation of the hour in 12-hour format 01 through 12
49 '%l' => 'g', // (lower-case 'L') Hour in 12-hour format, with a space preceding single digits 1 through 12
63 '%F' => 'Y/m/d', // Same as %Y-%m-%d (commonly used in database datestamps) Example: 2009-02-05 for February 5, 2009
78 'N' => '%u', // ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0) 1 (for Monday) through 7 (for Sunday)
83 'W' => '%V', // ISO-8601 week number of year, weeks starting on Monday (added in PHP 4.1.0) Example: 42 (the 42nd week in the year)
89 't' => '', // NOT SUPPORTED Number of days in the given month 28 through 31
92 'o' => '%g', // ISO-8601 week-numbering year. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0) Examples: 1999or 2003
105 'u' => '%s000000', // Microseconds (added in PHP 5.2.2). Note that date() will always generate000000 since it takes an integer parameter, whereas DateTime::format()does support microseconds if DateTime was created with microseconds. Example: 654321
107 'e' => '%Z', // Timezone identifier (added in PHP 5.1.0) Examples: UTC,GMT,Atlantic/Azores
108 'I' => '', // NOT SUPPORTED (capital i) Whether or not the date is in daylight saving time 1 if Daylight Saving Time, 0otherwise.
109 'O' => '%z', // Difference to Greenwich time (GMT) in hours Example: +0200
110 'P' => '%z', // Difference to Greenwich time (GMT) with colon between hours and minutes (added in PHP 5.1.3) Example: +02:00
112 'Z' => '', // NOT SUPPORTED Timezone offset in seconds. The offset for timezones west of UTC is always negative, and for those east of UTC is always positive. -43200 through50400
114 'c' => '', // NOT SUPPORTED ISO 8601 date (added in PHP 5) 2004-02-12T15:19:21+00:00
134 static fn($in) => '/(?<!%)' . $in . '/',
139 static fn($in) => '\\' . $in,
171 static fn($in) => '/(?<!\\\\)' . $in . '/',
188 static fn($in) => '/\\\\' . $in . '/',