| /dokuwiki/vendor/php81_bc/strftime/src/ |
| H A D | php-8.1-strftime.php | 27 * @param integer|string|DateTime $timestamp Timestamp 33 function strftime (string $format, $timestamp = null, ?string $locale = null) : string { argument 34 if (!($timestamp instanceof DateTimeInterface)) { 35 $timestamp = is_int($timestamp) ? '@' . $timestamp : (string) $timestamp; 38 $timestamp = new DateTime($timestamp); 43 $timestamp->setTimezone(new DateTimeZone(date_default_timezone_get())); 59 '%e' => function ($timestamp) { 60 return sprintf('% 2u', $timestamp->format('j')); 62 '%j' => function ($timestamp) { 64 return sprintf('%03d', $timestamp->format('z')+1); [all …]
|
| H A D | AbstractLocaleFormatter.php | 24 * @param DateTimeInterface $timestamp 29 abstract public function __invoke(DateTimeInterface $timestamp, string $format); argument
|
| H A D | DateLocaleFormatter.php | 27 public function __invoke(DateTimeInterface $timestamp, string $format) argument 35 return $timestamp->format($this->formats[$format]);
|
| H A D | IntlLocaleFormatter.php | 25 public function __invoke(DateTimeInterface $timestamp, string $format) argument 27 $tz = $timestamp->getTimezone(); 73 …ateFormatter($this->locale, $date_type, $time_type, $tz, $calendar, $pattern))->format($timestamp);
|
| /dokuwiki/inc/ChangeLog/ |
| H A D | PageChangeLog.php | 46 * @param int $timestamp log line date (optional) 51 public function addLogEntry(array $info, $timestamp = null) argument 55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]); 58 $logline = static::buildLogLine($info, $timestamp);
|
| H A D | MediaChangeLog.php | 46 * @param int $timestamp log line date (optional) 51 public function addLogEntry(array $info, $timestamp = null) argument 55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]); 58 $logline = static::buildLogLine($info, $timestamp);
|
| H A D | ChangeLogTrait.php | 17 abstract public function addLogEntry(array $info, $timestamp = null); argument 50 * @param int $timestamp log line date (optional) 53 public static function buildLogLine(array &$info, $timestamp = null) argument 57 'date' => $timestamp ?? $info['date'],
|
| H A D | ChangeLog.php | 653 $timestamp = $fileRev; 656 $timestamp = $fileRev; 664 $timestamp = false; 670 'date' => $timestamp ?: $lastRev + 1, 678 'timestamp' => $timestamp,
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/DataType/ |
| H A D | Date.php | 26 private function parseTimestamp($timestamp) argument 29 $this->dateTime = $date->setTimestamp($timestamp);
|
| /dokuwiki/inc/ |
| H A D | httputils.php | 17 * @param int $timestamp lastmodified time of the cache file 23 function http_conditionalRequest($timestamp) argument 29 $last_modified = substr(gmdate('r', $timestamp), 0, -5) . 'GMT';
|
| /dokuwiki/inc/Remote/ |
| H A D | LegacyApiCore.php | 450 public function legacyGetRecentChanges($timestamp) argument 452 $recents = $this->getRecentPageChanges($timestamp); 470 public function legacyGetRecentMediaChanges($timestamp) argument 472 $recents = $this->getRecentMediaChanges($timestamp);
|
| H A D | ApiCore.php | 361 * @param int $timestamp Only show changes newer than this unix timestamp 366 public function getRecentPageChanges($timestamp = 0) argument 368 $recents = getRecentsSince($timestamp); 791 * @param int $timestamp Only show changes newer than this unix timestamp 796 public function getRecentMediaChanges($timestamp = 0) argument 799 $recents = getRecentsSince($timestamp, null, '', RECENTS_MEDIA_CHANGES);
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Parser.php | 581 $timestamp = strtotime($entry['properties']['published'][0]); 582 $pub_date = date('F j Y g:ia', $timestamp).' GMT';
|
| /dokuwiki/vendor/php81_bc/strftime/ |
| H A D | README.md | 157 | `%s` | Unix Epoch Time timestamp (same as the `time()` function) | Example: `305815200` f…
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 289 * All items are now forced to have a timestamp. [#348](https://github.com/simplepie/simplepie/pull/…
|