Home
last modified time | relevance | path

Searched refs:strip (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php302 * The $strip parameter allows you to strip a certain number of path components from the filenames
303 * found in the tar file, similar to the --strip-components feature of GNU tar. This is triggered when
304 * an integer is passed as $strip.
305 * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
308 * @param int|string $strip
310 public function strip($strip) argument
313 $striplen = strlen($strip);
314 if (is_int($strip)) {
[all...]
H A DArchive.php48 * The $strip parameter allows you to strip a certain number of path components from the filenames
49 * found in the archive file, similar to the --strip-components feature of GNU tar. This is triggered when
50 * an integer is passed as $strip.
51 * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
63 * @param int|string $strip either the number of path components or a fixed prefix to strip
69 abstract public function extract($outdir, $strip = '', $exclude = '', $include = ''); argument
H A DTar.php132 * The $strip parameter allows you to strip a certain number of path components from the filenames
133 * found in the tar file, similar to the --strip-components feature of GNU tar. This is triggered when
134 * an integer is passed as $strip.
135 * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
148 * @param int|string $strip either the number of path components or a fixed prefix to strip
155 public function extract($outdir, $strip = '', $exclude = '', $include = '') argument
176 // apply strip rules
177 $fileinfo->strip(
[all...]
H A DZip.php115 * The $strip parameter allows you to strip a certain number of path components from the filenames
116 * found in the tar file, similar to the --strip-components feature of GNU tar. This is triggered when
117 * an integer is passed as $strip.
118 * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
128 * @param int|string $strip either the number of path components or a fixed prefix to strip
134 public function extract($outdir, $strip = '', $exclude = '', $include = '') argument
158 // apply strip rules
159 $fileinfo->strip(
[all...]
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php55 $strip = ["\t", "\n"];
59 'type' => str_replace($strip, '', $info['type']),
62 'sum' => PhpString::substr(str_replace($strip, '', $info['sum'] ?? ''), 0, 255),
63 'extra' => str_replace($strip, '', $info['extra']),
/dokuwiki/inc/Utf8/
H A DClean.php63 public static function strip($str) function in dokuwiki\\Utf8\\Clean
83 * @param string $string The UTF8 string to strip of special chars
85 * @param string $additional Additional chars to strip (used in regexp char class)
/dokuwiki/inc/
H A Dutf8.php66 dbg_deprecated(Clean::class . '::strip()');
67 return Clean::strip($str);
H A DMailer.class.php217 $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature
218 $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@
426 $text = Clean::strip($text);
593 $this->headers['Subject'] = Clean::strip($this->headers['Subject']);
H A Dpageutils.php79 //strip leading slashes
157 if ($ascii) $id = Clean::strip($id);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php241 public function strip_comments($strip = false) argument
243 $this->strip_comments = (bool) $strip;
H A DSimplePie.php1438 public function strip_comments($strip = false) argument
1440 $this->sanitize->strip_comments($strip);
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php