diff options
Diffstat (limited to 'ext/pcre/tests/bug34790.phpt')
| -rw-r--r-- | ext/pcre/tests/bug34790.phpt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ext/pcre/tests/bug34790.phpt b/ext/pcre/tests/bug34790.phpt new file mode 100644 index 0000000..c375ae5 --- /dev/null +++ b/ext/pcre/tests/bug34790.phpt @@ -0,0 +1,23 @@ +--TEST-- +Bug #34790 (preg_match_all(), named capturing groups, variable assignment/return => crash) +--FILE-- +<?php +function func1(){ + $string = 'what the word and the other word the'; + preg_match_all('/(?P<word>the)/', $string, $matches); + return $matches['word']; +} +$words = func1(); +var_dump($words); +?> +--EXPECT-- +array(4) { + [0]=> + string(3) "the" + [1]=> + string(3) "the" + [2]=> + string(3) "the" + [3]=> + string(3) "the" +} |
