Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 15 of 15) sorted by relevance

/dokuwiki/vendor/php81_bc/strftime/src/
H A Dphp-8.1-strftime.php27 * @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 DAbstractLocaleFormatter.php24 * @param DateTimeInterface $timestamp
29 abstract public function __invoke(DateTimeInterface $timestamp, string $format); argument
H A DDateLocaleFormatter.php27 public function __invoke(DateTimeInterface $timestamp, string $format) argument
35 return $timestamp->format($this->formats[$format]);
H A DIntlLocaleFormatter.php25 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 DPageChangeLog.php46 * @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 DMediaChangeLog.php46 * @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 DChangeLogTrait.php17 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 DChangeLog.php653 $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 DDate.php26 private function parseTimestamp($timestamp) argument
29 $this->dateTime = $date->setTimestamp($timestamp);
/dokuwiki/inc/
H A Dhttputils.php17 * @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 DLegacyApiCore.php450 public function legacyGetRecentChanges($timestamp) argument
452 $recents = $this->getRecentPageChanges($timestamp);
470 public function legacyGetRecentMediaChanges($timestamp) argument
472 $recents = $this->getRecentMediaChanges($timestamp);
H A DApiCore.php361 * @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 DParser.php581 $timestamp = strtotime($entry['properties']['published'][0]);
582 $pub_date = date('F j Y g:ia', $timestamp).' GMT';
/dokuwiki/vendor/php81_bc/strftime/
H A DREADME.md157 | `%s` | Unix Epoch Time timestamp (same as the `time()` function) | Example: `305815200` f…
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md289 * All items are now forced to have a timestamp. [#348](https://github.com/simplepie/simplepie/pull/…