Home
last modified time | relevance | path

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

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php21 protected $mtime = 0; variable in splitbrain\\PHPArchive\\FileInfo
36 $this->mtime = time();
85 $file->setMtime($stat['mtime']);
132 return $this->mtime;
136 * @param int $mtime
138 public function setMtime($mtime) argument
140 $this->mtime = $mtime;
H A DZip.php618 $header['mtime'] = $this->makeUnixTime($header['mdate'], $header['mtime']);
666 $header['mtime'] = $this->makeUnixTime($data['mdate'], $data['mtime']);
714 $fileinfo->setMtime($header['mtime']);
873 * @param $mtime
876 protected function makeUnixTime($mdate = null, $mtime = null) argument
878 if ($mdate && $mtime) {
883 $hour = ($mtime & 0xF800) >> 11;
884 $minute = ($mtime
[all...]
H A DTar.php526 * @param int $mtime
530 protected function writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') argument
557 $mtime = sprintf("%11s", decoct($mtime));
559 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime);
618 $return['mtime'] = OctDec(trim($header['mtime']));
657 $fileinfo->setMtime($header['mtime']);
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBase.php103 public function mtime(); function
H A DFile.php138 public function mtime() function in SimplePie\\Cache\\File
H A DMemcache.php146 public function mtime() function in SimplePie\\Cache\\Memcache
151 // essentially ignore the mtime because Memcache expires on its own
H A DMemcached.php141 public function mtime() function in SimplePie\\Cache\\Memcached
H A DRedis.php167 public function mtime() function in SimplePie\\Cache\\Redis
H A DMySQL.php130 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (`id` TEXT CHARACTER SET utf8 NOT NULL, `items` SMALLINT NOT NULL DEFAULT 0, `data` BLOB NOT NULL, `mtime` INT UNSIGNED NOT NULL, UNIQUE (`id`(125)))');
163 'AND cd.mtime < (unix_timestamp() - :purge_time)');
181 $sql = 'UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `items` = :items, `data` = :data, `mtime` = :time WHERE `id` = :feed';
185 $sql = 'UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `data` = :data, `mtime` = :time WHERE `id` = :feed';
196 $query = $this->mysql->prepare('INSERT INTO `' . $this->options['extras']['prefix'] . 'cache_data` (`id`, `items`, `data`, `mtime`) VALUES(:feed, :count, :data, :time)');
248 $query = $this->mysql->prepare('UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `items` = 0, `data` = :data, `mtime` = :time WHERE `id` = :feed');
256 $query = $this->mysql->prepare('INSERT INTO `' . $this->options['extras']['prefix'] . 'cache_data` (`id`, `items`, `data`, `mtime`) VALUES(:id, 0, :data, :time)');
331 public function mtime() function in SimplePie\\Cache\\MySQL
337 $query = $this->mysql->prepare('SELECT `mtime` FROM `' . $this->options['extras']['prefix'] . 'cache_data` WHERE `id` = :id');
357 $query = $this->mysql->prepare('UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `mtime`
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DGzdecode.php226 $mtime = substr($this->compressed_data, $this->position, 4);
229 $mtime = strrev($mtime);
231 $this->MTIME = current(unpack('l', $mtime));
H A DMisc.php2094 if (($mtime = filemtime($file)) > $time) {
2095 $time = $mtime;
/dokuwiki/inc/Ui/
H A DSearch.php107 'mtime' => [
109 'sort' => 'mtime',
114 if ($INPUT->str('srt') === 'mtime') {
115 $activeOption = 'mtime';
567 $mtime = filemtime(wikiFN($id));
569 $lastMod .= '<time datetime="' . date_iso8601($mtime) . '" title="' . dformat($mtime) . '">' .
570 dformat($mtime, '%f') .
/dokuwiki/inc/
H A Dmedia.php1893 $mtime = @filemtime($local); // 0 if not exists
1897 ($mtime == 0) || // cache does not exist
1898 ($cache != -1 && $mtime < time() - $cache) // 'recache' and cache has expired
1908 if ($mtime) return $local;
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md273 * Simplified the use of `mtime()` and `touch()`. [#403](https://github.com/simplepie/simplepie/pull/403)