summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug21732.phpt
blob: 629e015a06132b483d444f64c02d4447c3478c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--TEST--
Bug #21732 (preg_replace() segfaults with invalid parameters)
--FILE--
<?php
class foo {
	function cb($param) {
		var_dump($param);
		return "yes!";
	}
}

try {
    var_dump(preg_replace('', array(), ''));
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}
var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
?>
--EXPECT--
Parameter mismatch, pattern is a string while replacement is an array
array(4) {
  [0]=>
  string(5) "abcde"
  [1]=>
  string(2) "ab"
  [2]=>
  string(2) "cd"
  [3]=>
  string(1) "e"
}
string(4) "yes!"