Searched refs:repl (Results 1 – 3 of 3) sorted by relevance
/dokuwiki/inc/Utf8/ |
D | Clean.php | 84 * @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/ |
D | mailer.test.php | 182 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/ |
D | utf8.php | 199 function utf8_stripspecials($str, $repl = '', $additional = '') argument 202 return Clean::stripspecials($str, $repl, $additional);
|