Home
last modified time | relevance | path

Searched refs:exclude (Results 1 – 4 of 4) sorted by last modified time

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php337 * Does the file match the given include and exclude expressions?
342 * @param string $exclude Regular expression of files to exclude
345 public function matchExpression($include = '', $exclude = '') argument
351 if ($exclude && preg_match($exclude, $this->getPath())) {
H A DTar.php139 * and $exclude parameter. Both expect a full regular expression (including delimiters and modifiers). If
140 * $include is set only files that match this expression will be extracted. Files that match the $exclude
149 * @param string $exclude a regular expression of files to exclude
155 public function extract($outdir, $strip = '', $exclude = '', $include = '') argument
180 if (!strlen($fileinfo->getPath()) || !$fileinfo->matchExpression($include, $exclude)) {
H A DZip.php122 * and $exclude parameter. Both expect a full regular expression (including delimiters and modifiers). If
123 * $include is set only files that match this expression will be extracted. Files that match the $exclude
129 * @param string $exclude a regular expression of files to exclude
134 public function extract($outdir, $strip = '', $exclude = '', $include = '') argument
162 if (!strlen($fileinfo->getPath()) || !$fileinfo->matchExpression($include, $exclude)) {
H A DArchive.php55 * and $exclude parameter. Both expect a full regular expression (including delimiters and modifiers). If
56 * $include is set, only files that match this expression will be extracted. Files that match the $exclude
64 * @param string $exclude a regular expression of files to exclude
69 abstract public function extract($outdir, $strip = '', $exclude = '', $include = ''); argument