From: Nuno Lopes Date: Mon, 3 Jul 2006 14:46:44 +0000 (+0000) Subject: more testing X-Git-Tag: php-5.2.0RC1~198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=919d737505e50bb188814dc23c13dfe92d6d2cd4;p=php more testing --- diff --git a/ext/pcre/tests/match_flags3.phpt b/ext/pcre/tests/match_flags3.phpt index 8670f0383d..a0fa5a8f3c 100644 --- a/ext/pcre/tests/match_flags3.phpt +++ b/ext/pcre/tests/match_flags3.phpt @@ -8,6 +8,9 @@ var_dump(preg_match('', '', $match, 0xfff)); var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -8)); var_dump($match); +var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -500)); +var_dump($match); + var_dump(preg_match_all('/\d+/', '123 456 789 012', $match, 0, -8)); var_dump($match); @@ -22,6 +25,11 @@ array(1) { [0]=> string(3) "789" } +int(1) +array(1) { + [0]=> + string(3) "123" +} int(2) array(1) { [0]=> @@ -33,5 +41,5 @@ array(1) { } } -Warning: preg_match: numeric named subpatterns are not allowed in %smatch_flags3.php on line 11 +Warning: preg_match: numeric named subpatterns are not allowed in %smatch_flags3.php on line 14 bool(false) diff --git a/ext/pcre/tests/preg_replace_callback2.phpt b/ext/pcre/tests/preg_replace_callback2.phpt new file mode 100644 index 0000000000..65f23ca6cb --- /dev/null +++ b/ext/pcre/tests/preg_replace_callback2.phpt @@ -0,0 +1,40 @@ +--TEST-- +preg_replace_callback() 2 +--FILE-- + 'aksfjk', 12 => 'aa bb'))); + +var_dump(preg_replace_callback('~\A.~', 'g', array(array('xyz')))); + +var_dump(preg_replace_callback('~\A.~', create_function('$m', 'return strtolower($m[0]);'), 'ABC')); +?> +--EXPECTF-- +Warning: preg_replace_callback(): Unable to call custom replacement function ins %preg_replace_callback2.php on line 8 +array(3) { + [0]=> + string(12) "'a' 'b3' bcd" + ["v"]=> + string(6) "aksfjk" + [12]=> + string(9) "'aa' 'bb'" +} + +Notice: Array to string conversion in %spreg_replace_callback2.php on line 17 +array(1) { + [0]=> + string(7) "'A'rray" +} +string(3) "aBC"