/PHP-7.3/ext/pcre/tests/ |
H A D | preg_replace_error.phpt | 2 Test preg_replace() function : error - incorrect number of parameters 9 echo "*** Testing preg_replace() : error conditions ***\n"; 11 echo "\n-- Testing preg_replace() function with zero arguments --\n"; 12 var_dump(preg_replace()); 13 //Test preg_replace() with one more than the expected number of arguments 20 var_dump(preg_replace($regex, $replace, $subject, $limit, $count, $extra_arg)); 21 //Testing preg_replace() with one less than the expected number of arguments 25 var_dump(preg_replace($regex, $replace)); 29 *** Testing preg_replace() : error conditions *** 31 -- Testing preg_replace() function with zero arguments -- [all …]
|
H A D | preg_replace2.phpt | 2 preg_replace() 12 var_dump(preg_replace('', array(), '')); 14 var_dump(preg_replace(array('/\da(.)/ui', '@..@'), '$1', '12Abc')); 15 var_dump(preg_replace(array('/\da(.)/ui', '@(.)@'), '$1', array('x','a2aA', '1av2Ab'))); 18 var_dump(preg_replace(array('/[\w]+/'), array('$'), array('xyz', 'bdbd'))); 19 var_dump(preg_replace(array('/\s+/', '~[b-d]~'), array('$'), array('x y', 'bd bc'))); 25 Warning: preg_replace(): Parameter mismatch, pattern is a string while replacement is an array in %…
|
H A D | preg_replace_error1.phpt | 2 Test preg_replace() function : error - bad regular expressions 6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]]) 11 * Testing how preg_replace reacts to being passed the wrong type of regex argument 13 echo "*** Testing preg_replace() : error conditions***\n"; 24 var_dump(preg_replace($regex_value, $replace, $subject)); 27 var_dump(preg_replace($regex_value, $replace, $subject)); 30 *** Testing preg_replace() : error conditions*** 34 Warning: preg_replace(): Delimiter must not be alphanumeric or backslash in %spreg_replace_error1.p… 39 Warning: preg_replace(): No ending delimiter '/' found in %spreg_replace_error1.php on line %d 44 Warning: preg_replace(): Unknown modifier '/' in %spreg_replace_error1.php on line %d [all …]
|
H A D | bug66121.phpt | 6 var_dump(preg_replace('/(?<!ක)/u', '*', 'ක')); 7 var_dump(preg_replace('/(?<!ක)/u', '*', 'ම')); 9 var_dump(preg_replace('/(?<!k)/u', '*', 'k')); 10 var_dump(preg_replace('/(?<!k)/u', '*', 'm')); 15 var_dump(preg_replace('/(?<!ක)/u', '*', "\xFCක")); 16 var_dump(preg_replace('/(?<!ක)/u', '*', "ක\xFC"));
|
H A D | preg_replace_error2.phpt | 2 Test preg_replace() function : error conditions - wrong arg types 6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]]) 11 * Testing how preg_replace reacts to being passed the wrong type of replacement argument 13 echo "*** Testing preg_replace() : error conditions ***\n"; 19 var_dump(preg_replace($regex, $value, $subject)); 22 var_dump(preg_replace($regex, $value, $subject)); 26 *** Testing preg_replace() : error conditions *** 33 Warning: preg_replace(): Parameter mismatch, pattern is a string while replacement is an array in %…
|
H A D | bug53823.phpt | 2 Bug #53823 - preg_replace: * qualifier on unicode replace garbles the string 5 var_dump(preg_replace('/[^\pL\pM]*/iu', '', 'áéíóú')); 7 var_dump(preg_replace('/[^\pL\pM]*/iu', '', "\xFCáéíóú")); 8 var_dump(preg_replace('/[^\pL\pM]*/iu', '', "áéíóú\xFC"));
|
H A D | preg_replace.phpt | 2 preg_replace() 6 var_dump(preg_replace('{{\D+}}', 'x', '{abcd}')); 7 var_dump(preg_replace('{{\D+}}', 'ddd', 'abcd')); 9 var_dump(preg_replace('/(ab)(c)(d)(e)(f)(g)(h)(i)(j)(k)/', 'a${1}2$103', 'zabcdefghijkl'));
|
H A D | 002.phpt | 13 var_dump(preg_replace('/(.)/', '${1}${1', 'abc')); 14 var_dump(preg_replace('/.++\d*+[/', 'for ($', 'abc')); 15 var_dump(preg_replace('/(.)/e', 'for ($', 'abc')); 33 Warning: preg_replace(): Compilation failed: missing terminating ] for character class at offset 8 … 36 Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead …
|
H A D | pcre_count.phpt | 2 preg_replace() fifth parameter - count 9 var_dump(preg_replace($regex, 'xxxx', $string, -1, $count)); 16 var_dump(preg_replace($regex, 'xxxx', $string, -1, $count)); 23 var_dump(preg_replace($regex, '...', $string, -1, $count)); 29 var_dump(preg_replace($regex, '...', $string, -1));
|
H A D | preg_replace_variation1.phpt | 2 Test preg_replace() function : variation both arguments are arrays 6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]]) 10 * Testing preg_replace when the regex and the replacement are both arrays. 13 $new_string = preg_replace(array('/\b\w{1}s/', '/(\d{1})-(\d{1})/', '/[\(!\)]/'), array('test', '$1…
|
H A D | preg_replace_basic.phpt | 2 Test preg_replace() function : basic functionality 6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]]) 11 var_dump(preg_replace('<- This is a string$>', 'This shouldn\'t work', $string)); //tries to find '… 12 var_dump(preg_replace('<[0-35-9]>', '4', $string)); //finds any number that's not 4 and replaces it… 13 var_dump(preg_replace('<\b[hH]\w{2,4}>', 'Bonjour', $string)); //finds h or H at the beginning of a… 14 var_dump(preg_replace('<(\w)\s*-\s*(\w)>', '\\1. \\2', $string)); //finds dashes with an indefinite… 15 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>', '\\1 at \\2 dot \\3 dot \\4', 'jo…
|
H A D | preg_replace_edit_basic.phpt | 2 Test preg_replace() function : basic 5 /* Prototype : proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [,… 14 var_dump(preg_replace('<- This is a string$>', 17 var_dump(preg_replace('<[0-35-9]>', 23 var_dump(preg_replace('<\b[hH]\w{2,4}>', 26 var_dump(preg_replace('<(\w)\s*-\s*(\w)>', 29 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>',
|
H A D | 006.phpt | 2 preg_replace() with array of failing regular expressions 10 $result = preg_replace(array('#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '#\[(right)\](((?R)|[^[… 14 $result = preg_replace('#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '', $text);
|
H A D | bug37800.phpt | 2 Bug #37800 (preg_replace() limit parameter odd behaviour) 11 $s_output = preg_replace($s_search, $s_replace, $s_string, $i_limit, 18 $s_output = preg_replace($s_search, $s_replace, $s_string, $i_limit,
|
H A D | bug79188.phpt | 2 Bug #79188: Memory corruption in preg_replace/preg_replace_callback and unicode 6 var_dump(preg_replace("//u", "", "a" . str_repeat("\u{1f612}", 10)));
|
H A D | bug21758.phpt | 8 $s = 'preg_replace() is broken'; 26 string(25) "preg_replace() is working"
|
H A D | invalid_utf8.phpt | 2 preg_replace() and invalid UTF8 13 $result = preg_replace("#(&\#x*)([0-9A-F]+);*#iu","$1$2;",$string);
|
H A D | bug21732.phpt | 2 Bug #21732 (preg_replace() segfaults with invalid parameters) 14 var_dump(preg_replace('', array(), ''));
|
H A D | bug41148.phpt | 43 $letexte = preg_replace($cherche1, $remplace1, $letexte); 44 $letexte = preg_replace("@^ <br />@S", "", $letexte);
|
H A D | bug71537.phpt | 6 var_dump(preg_replace(array("/Monkey/"), array(2016), "Happy Year of Monkey"));
|
/PHP-7.3/ext/mbstring/tests/ |
H A D | php_gr_jp_dev_884-2.phpt | 11 var_dump(preg_replace("/C?$/", "Z", "ABC")); 13 var_dump(preg_replace("/C*$/", "Z", "ABC"));
|
/PHP-7.3/ext/opcache/tests/ |
H A D | blacklist-win32.phpt | 16 $conf[3] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[3]); 17 $conf[4] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[4]);
|
H A D | blacklist.phpt | 16 $conf[3] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[3]); 17 $conf[4] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[4]);
|
/PHP-7.3/ext/curl/tests/ |
H A D | curl_setopt_basic002.phpt | 30 var_dump(preg_replace('/[\r\n]/', ' ', file_get_contents($temp_file))); 42 var_dump(preg_replace('/[\r\n]/', ' ', file_get_contents($temp_file)));
|
/PHP-7.3/ |
H A D | server-tests.php | 1243 @unlink(preg_replace('/\.phpt$/','.diff',$file)); 1244 @unlink(preg_replace('/\.phpt$/','.log',$file)); 1245 @unlink(preg_replace('/\.phpt$/','.exp',$file)); 1246 @unlink(preg_replace('/\.phpt$/','.out',$file)); 1403 $output = preg_replace('/\r\n/',"\n",$output); 1413 $wanted_re = preg_replace('/\r\n/',"\n",$wanted); 1516 $wanted = preg_replace('/\r\n/',"\n",$wanted); 1541 $logname = preg_replace('/\.phpt$/','.exp',$file); 1547 $logname = preg_replace('/\.phpt$/','.out',$file); 1553 $logname = preg_replace('/\.phpt$/','.diff',$file); [all …]
|