Home
last modified time | relevance | path

Searched refs:repl (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/inc/Utf8/
DClean.php84 * @param string $repl Replace special with this string
88 public static function stripspecials($string, $repl = '', $additional = '') argument
95 return preg_replace('/[' . $additional . '\x00-\x19' . $specials . ']/u', $repl, $string);
/dokuwiki/_test/tests/inc/
Dmailer.test.php182 foreach($replacements as $repl){
183 … $this->assertDoesNotMatchRegularExpression("/$repl/",$text,"$repl replacement still in text");
184 … $this->assertDoesNotMatchRegularExpression("/$repl/",$html,"$repl replacement still in html");
/dokuwiki/inc/
Dutf8.php199 function utf8_stripspecials($str, $repl = '', $additional = '') argument
202 return Clean::stripspecials($str, $repl, $additional);