Home
last modified time | relevance | path

Searched refs:mtime (Results 1 – 16 of 16) sorted by relevance

/dokuwiki/inc/Remote/Response/
H A DMedia.php35 * @param int $mtime The media revision aka last modified timestamp
44 $mtime = 0, argument
53 $this->revision = $revision ?: $mtime ?: filemtime($this->file);
H A DPage.php35 * @param int $mtime Last modified timestamp
45 $mtime = 0, argument
54 $this->revision = $revision ?: $mtime ?: @filemtime($this->file);
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php21 protected $mtime = 0; variable in splitbrain\\PHPArchive\\FileInfo
36 $this->mtime = time();
132 return $this->mtime;
136 * @param int $mtime
138 public function setMtime($mtime) argument
140 $this->mtime = $mtime;
H A DZip.php876 protected function makeUnixTime($mdate = null, $mtime = null) argument
878 if ($mdate && $mtime) {
883 $hour = ($mtime & 0xF800) >> 11;
884 $minute = ($mtime & 0x07E0) >> 5;
885 $seconde = ($mtime & 0x001F) << 1;
887 $mtime = mktime($hour, $minute, $seconde, $month, $day, $year);
889 $mtime = time();
892 return $mtime;
H A DTar.php573 * @param int $mtime
577 protected function writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') argument
604 $mtime = self::numberEncode($size, 12);
606 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime);
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBase.php102 public function mtime(); function
H A DFile.php137 public function mtime() function in SimplePie\\Cache\\File
H A DMemcached.php140 public function mtime() function in SimplePie\\Cache\\Memcached
H A DMemcache.php145 public function mtime() function in SimplePie\\Cache\\Memcache
H A DRedis.php166 public function mtime() function in SimplePie\\Cache\\Redis
H A DMySQL.php330 public function mtime() function in SimplePie\\Cache\\MySQL
/dokuwiki/vendor/simplepie/simplepie/src/
H A DGzdecode.php225 $mtime = substr($this->compressed_data, $this->position, 4);
228 $mtime = strrev($mtime);
230 $this->MTIME = current(unpack('l', $mtime));
H A DMisc.php2093 if (($mtime = filemtime($file)) > $time) {
2094 $time = $mtime;
/dokuwiki/inc/Ui/
H A DSearch.php567 $mtime = filemtime(wikiFN($id));
569 … $lastMod .= '<time datetime="' . date_iso8601($mtime) . '" title="' . dformat($mtime) . '">' .
570 dformat($mtime, '%f') .
/dokuwiki/inc/
H A Dmedia.php1901 $mtime = @filemtime($local); // 0 if not exists
1905 ($mtime == 0) || // cache does not exist
1906 ($cache != -1 && $mtime < time() - $cache) // 'recache' and cache has expired
1916 if ($mtime) return $local;
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md288 * Simplified the use of `mtime()` and `touch()`. [#403](https://github.com/simplepie/simplepie/pull…