Searched refs:preg_replace_callback (Results 1 – 17 of 17) sorted by relevance
/PHP-5.3/ext/pcre/tests/ |
H A D | preg_replace_callback3.phpt | 2 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 D | preg_replace_callback_error.phpt | 2 Test preg_replace_callback() function : error 9 echo "***Testing preg_replace_callback() : error conditions***\n"; 11 echo "\n-- Testing preg_replace_callback() function with Zero arguments --\n"; 12 var_dump(preg_replace_callback()); 13 //Test preg_replace_callback() with one more than the expected number of arguments 25 //Testing preg_replace_callback() with one less than the expected number of arguments 28 var_dump(preg_replace_callback($regex, 'integer word')); 32 ***Testing preg_replace_callback() : error conditions*** 34 -- Testing preg_replace_callback() function with Zero arguments -- 39 -- Testing preg_replace_callback() function with more than expected no. of arguments -- [all …]
|
H A D | preg_replace_callback_error1.phpt | 2 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 D | preg_replace_callback2.phpt | 2 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.~', create_function('$m', 'return strtolower($m[0]);'), 'ABC'));
|
H A D | preg_replace.phpt | 11 var_dump(preg_replace_callback('//e', '', '')); 13 var_dump(preg_replace_callback('//e', 'strtolower', '')); 21 Warning: preg_replace_callback(): Requires argument 2, '', to be a valid callback in %spreg_replace… 24 Warning: preg_replace_callback(): Modifier /e cannot be used with replacement callback in %spreg_re…
|
H A D | bug37911.phpt | 2 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(): Numeric named subpatterns are not allowed in %sbug37911.php on li…
|
H A D | preg_replace_callback_basic.phpt | 2 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 D | 007.phpt | 2 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 D | bug21758.phpt | 2 Bug #21758 (preg_replace_callback() not working with class methods) 10 var_dump(preg_replace_callback(
|
H A D | bug44214_2.phpt | 2 Bug #44214-2 (crash with preg_replace_callback() and global variable) 15 var_dump(preg_replace_callback( '`a+`', 'myCallBack', $string));
|
H A D | bug44214.phpt | 2 Bug #44214 (crash with preg_replace_callback() and global variable) 15 var_dump(preg_replace_callback( '`a+`', 'myCallBack', $string));
|
H A D | preg_replace_callback.phpt | 2 preg_replace_callback() 16 return preg_replace_callback($regex, 'parseTagsRecursive', $input);
|
H A D | bug21732.phpt | 15 var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
|
/PHP-5.3/Zend/tests/ |
H A D | closure_008.phpt | 2 Closure 008: Use in preg_replace_callback() 10 return preg_replace_callback('/( +) /', $lambda, $text);
|
/PHP-5.3/sapi/cli/tests/ |
H A D | 006.phpt | 87 Function [ <internal:pcre> function preg_replace_callback ] {
|
/PHP-5.3/ext/pcre/ |
H A D | php_pcre.c | 1412 static PHP_FUNCTION(preg_replace_callback) in PHP_FUNCTION() argument 1900 PHP_FE(preg_replace_callback, arginfo_preg_replace_callback)
|
/PHP-5.3/ |
H A D | NEWS | 3430 - Fixed bug #44214 (Crash using preg_replace_callback() and global variables). 6031 - Added optional fifth parameter "count" to preg_replace_callback() and
|
Completed in 56 milliseconds