Searched refs:day (Results 1 – 5 of 5) sorted by relevance
/dokuwiki/vendor/simplepie/simplepie/src/Parse/ |
D | Date.php | 69 public $day = [ variable in SimplePie\\Parse\\Date 599 $this->day_pcre = '(' . implode('|', array_keys($this->day)) . ')'; 725 $day = isset($match['day']) ? (int) $match['day'] : 1; 742 return gmmktime($hour, $minute, $second, $month, $day, $year) - $timezone; 813 $day = '([0-9]{1,2})'; 819 …?:' . $optional_fws . $day_name . $optional_fws . ',)?' . $optional_fws . $day . $fws . $month . $… 890 $day = '([0-9]{1,2})'; 893 …$pcre = '/^' . $day_name . ',' . $space . $day . '-' . $month . '-' . $year . $space . $hour . ':'… 946 $day = '([0-9]{1,2})'; 950 …$pcre = '/^' . $wday_name . $space . $mon_name . $space . $day . $space . $hour . ':' . $min . ':'…
|
/dokuwiki/vendor/php81_bc/strftime/src/ |
D | php-8.1-strftime.php | 72 $day = new DateTime(sprintf('%d-01 Sunday', $timestamp->format('Y'))); 73 return sprintf('%02u', 1 + ($timestamp->format('z') - $day->format('z')) / 7); 78 $day = new DateTime(sprintf('%d-01 Monday', $timestamp->format('Y'))); 79 return sprintf('%02u', 1 + ($timestamp->format('z') - $day->format('z')) / 7);
|
/dokuwiki/lib/plugins/logviewer/lang/en/ |
D | nolog.txt | 1 There are no log entries for the selected day and log facility.
|
/dokuwiki/vendor/php81_bc/strftime/ |
D | README.md | 29 - [Day](#day) 94 | `%a` | An abbreviated textual representation of the day | `Sun` through `Sat` … 95 | `%A` | A full textual representation of the day | `Sunday` through `Saturday` … 96 | `%d` | Two-digit day of the month (with leading zeros) | `01` to `31` … 99 | `%u` | ISO-8601 numeric representation of the day of the week | `1` (for `Monday`) through `7` … 100 | `%w` | Numeric representation of the day of the week | `0` (for `Sunday`) through `6` …
|
/dokuwiki/vendor/splitbrain/php-archive/src/ |
D | Zip.php | 881 $day = $mdate & 0x001F; 887 $mtime = mktime($hour, $minute, $seconde, $month, $day, $year);
|