| /dokuwiki/inc/Remote/Response/ | 
| H A D | Media.php | 35      * @param int $mtime The media revision aka last modified timestamp44         $mtime = 0,  argument
 53         $this->revision = $revision ?: $mtime ?: filemtime($this->file);
 
 | 
| H A D | Page.php | 35      * @param int $mtime Last modified timestamp45         $mtime = 0,  argument
 54         $this->revision = $revision ?: $mtime ?: @filemtime($this->file);
 
 | 
| /dokuwiki/vendor/splitbrain/php-archive/src/ | 
| H A D | FileInfo.php | 21     protected $mtime = 0;  variable in splitbrain\\PHPArchive\\FileInfo36         $this->mtime = time();
 132         return $this->mtime;
 136      * @param int $mtime
 138     public function setMtime($mtime)  argument
 140         $this->mtime = $mtime;
 
 | 
| H A D | Zip.php | 876     protected function makeUnixTime($mdate = null, $mtime = null)  argument878         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 D | Tar.php | 573      * @param int $mtime577     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 D | Base.php | 102     public function mtime();  function
 | 
| H A D | File.php | 137     public function mtime()  function in SimplePie\\Cache\\File
 | 
| H A D | Memcached.php | 140     public function mtime()  function in SimplePie\\Cache\\Memcached
 | 
| H A D | Memcache.php | 145     public function mtime()  function in SimplePie\\Cache\\Memcache
 | 
| H A D | Redis.php | 166     public function mtime()  function in SimplePie\\Cache\\Redis
 | 
| H A D | MySQL.php | 330     public function mtime()  function in SimplePie\\Cache\\MySQL
 | 
| /dokuwiki/vendor/simplepie/simplepie/src/ | 
| H A D | Gzdecode.php | 225             $mtime = substr($this->compressed_data, $this->position, 4);228                 $mtime = strrev($mtime);
 230             $this->MTIME = current(unpack('l', $mtime));
 
 | 
| H A D | Misc.php | 2093                 if (($mtime = filemtime($file)) > $time) {2094                     $time = $mtime;
 
 | 
| /dokuwiki/inc/Ui/ | 
| H A D | Search.php | 567             $mtime = filemtime(wikiFN($id));569 …     $lastMod .= '<time datetime="' . date_iso8601($mtime) . '" title="' . dformat($mtime) . '">' .
 570                 dformat($mtime, '%f') .
 
 | 
| /dokuwiki/inc/ | 
| H A D | media.php | 1901     $mtime = @filemtime($local); // 0 if not exists1905         ($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 D | CHANGELOG.md | 288 * Simplified the use of `mtime()` and `touch()`. [#403](https://github.com/simplepie/simplepie/pull…
 |