Home
last modified time | relevance | path

Searched refs:preg_replace_callback (Results 1 – 25 of 34) sorted by relevance

12

/PHP-7.4/ext/pcre/tests/
H A Dpreg_replace_callback3.phpt2 preg_replace_callback() 3
6 var_dump(preg_replace_callback());
7 var_dump(preg_replace_callback(1));
8 var_dump(preg_replace_callback(1,2));
9 var_dump(preg_replace_callback(1,2,3));
10 var_dump(preg_replace_callback(1,2,3,4));
12 var_dump(preg_replace_callback(1,2,3,4,$a));
14 var_dump(preg_replace_callback("","","","",$a));
16 var_dump(preg_replace_callback($a,$a,$a,$a,$a));
21 Warning: preg_replace_callback() expects at least 3 parameters, 0 given in %s on line %d
[all …]
H A Dpreg_replace_callback_error1.phpt2 Test preg_replace_callback() function : error
11 * Testing how preg_replace_callback reacts to being passed the wrong type of regex argument
13 echo "*** Testing preg_replace_callback() : error conditions ***\n";
27 var_dump(preg_replace_callback($regex_value, 'integer_word', $subject));
32 *** Testing preg_replace_callback() : error conditions ***
36 Warning: preg_replace_callback(): Delimiter must not be alphanumeric or backslash in %s on line %d
41 Warning: preg_replace_callback(): No ending delimiter '/' found in %s on line %d
46 Warning: preg_replace_callback(): Unknown modifier '/' in %s on line %d
51 Warning: preg_replace_callback(): Unknown modifier 'F' in %s on line %d
H A Dpreg_replace_callback2.phpt2 preg_replace_callback() 2
11 var_dump(preg_replace_callback('/\w/', 'f', 'z'));
18 var_dump(preg_replace_callback('@\b\w{1,2}\b@', 'g', array('a b3 bcd', 'v' => 'aksfjk', 12 => 'aa b…
20 var_dump(preg_replace_callback('~\A.~', 'g', array(array('xyz'))));
22 var_dump(preg_replace_callback('~\A.~', function($m) { return strtolower($m[0]); }, 'ABC'));
H A Dbug69864.phpt2 Bug #69864 (Segfault in preg_replace_callback)
13 var_dump(preg_replace_callback('/a/', function($m) {
19 var_dump(preg_replace_callback('/a/', function($m) {
25 var_dump(preg_replace_callback('/a/', function($m) {
31 var_dump(preg_replace_callback('/a/', function($m) {
H A Dbug37911.phpt2 Bug #37911 (preg_replace_callback ignores named groups)
12 var_dump(preg_replace_callback('|(?P<name>blub)|', 'callback', 'bla blub blah'));
17 var_dump(preg_replace_callback('|(?P<1>blub)|', 'callback', 'bla blub blah'));
40 Warning: preg_replace_callback(): Compilation failed: %s name must start with a non-digit at offset…
H A Dpreg_replace_callback_basic.phpt2 Test preg_replace_callback() function : basic functionality
10 * Basic test for preg_replace_callback
19 $new_subject1 = preg_replace_callback('/\d/', "integer_word", $subject1);
22 $new_subject2 = preg_replace_callback('/\d/', "integer_word", $subject2, 3); //limits to three repl…
25 $new_subject3 = preg_replace_callback('/\d/', "integer_word", $subject3, 5, $count); //limites to f…
H A D007.phpt2 preg_replace_callback() with callback that modifies subject string
20 var_dump(preg_replace_callback('#.#u', 'evil', $txt));
24 var_dump(preg_replace_callback('#.#u', 'evil', $txt));
H A Dbug79188.phpt2 Bug #79188: Memory corruption in preg_replace/preg_replace_callback and unicode
7 var_dump(preg_replace_callback(
H A Dbug21758.phpt2 Bug #21758 (preg_replace_callback() not working with class methods)
10 var_dump(preg_replace_callback(
H A Dbug77193.phpt2 Bug #77193 Infinite loop in preg_replace_callback
14 preg_replace_callback(
H A Dbug44214_2.phpt2 Bug #44214-2 (crash with preg_replace_callback() and global variable)
15 var_dump(preg_replace_callback( '`a+`', 'myCallBack', $string));
H A Dbug44214.phpt2 Bug #44214 (crash with preg_replace_callback() and global variable)
15 var_dump(preg_replace_callback( '`a+`', 'myCallBack', $string));
H A Dpreg_replace_callback_flags.phpt2 Support for flags in preg_replace_callback(_array)
6 var_dump(preg_replace_callback('/./', function($matches) {
21 var_dump(preg_replace_callback('/(a)|(b)/', function($matches) {
H A Dpreg_replace_callback.phpt2 preg_replace_callback()
16 return preg_replace_callback($regex, 'parseTagsRecursive', $input);
H A Dbug73483.phpt7 var_dump(preg_replace_callback($regex, function (array $matches) use($regex) {
H A Dbug21732.phpt15 var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
H A Dbug81243.phpt13 $replaced = preg_replace_callback('/\s/', function ($_) {return '-';}, $test_string);
H A Dbug73612.phpt15 preg_replace_callback('/./', 'count', 'x', -1, $obj);
H A Dpreg_replace_callback_array2.phpt16 var_dump(preg_replace_callback($a, $a, $a, $a, $b));
55 Warning: preg_replace_callback() expects parameter 4 to be int, array given in %s on line %d
H A D002.phpt36 Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead …
H A Dmarks.phpt24 var_dump(preg_replace_callback($regex, function($matches) {
/PHP-7.4/Zend/tests/
H A Dclosure_008.phpt2 Closure 008: Use in preg_replace_callback()
10 return preg_replace_callback('/( +) /', $lambda, $text);
H A Dclosure_047.phpt2 Closure 047: Use in preg_replace_callback() using variables by reference
8 preg_replace_callback( '/(\?)/', function($matches) use (&$params, &$text) {
H A Dclosure_048.phpt2 Closure 048: Use in preg_replace_callback() using variables by reference
12 preg_replace_callback( '/(\?)/', $c, $text );
/PHP-7.4/scripts/dev/
H A Dtidy.php83 return preg_replace_callback('/^ +/m', function(array $matches) {
93 return preg_replace_callback('/^[ \t]+/m', function(array $matches) {
118 return preg_replace_callback(

Completed in 22 milliseconds

12