Home
last modified time | relevance | path

Searched refs:include (Results 26 – 28 of 28) sorted by path

12

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php337 * Does the file match the given include and exclude expressions?
339 * Exclude rules take precedence over include rules
341 * @param string $include Regular expression of files to include
345 public function matchExpression($include = '', $exclude = '') argument
348 if ($include && !preg_match($include, $this->getPath())) {
H A DTar.php138 * By default this will extract all files found in the archive. You can restrict the output using the $include
140 * $include is set only files that match this expression will be extracted. Files that match the $exclude
150 * @param string $include a regular expression of files to include
155 public function extract($outdir, $strip = '', $exclude = '', $include = '') argument
180 if (!strlen($fileinfo->getPath()) || !$fileinfo->matchExpression($include, $exclude)) {
H A DZip.php121 * By default this will extract all files found in the archive. You can restrict the output using the $include
123 * $include is set only files that match this expression will be extracted. Files that match the $exclude
130 * @param string $include a regular expression of files to include
134 public function extract($outdir, $strip = '', $exclude = '', $include = '') argument
162 if (!strlen($fileinfo->getPath()) || !$fileinfo->matchExpression($include, $exclude)) {

12