summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug21732.phpt
blob: 3dfc41e19fe9445f5b6ad14bee8c6f54d21a2ae2 (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
--TEST--
Bug #21732 (preg_replace() segfaults with invalid parameters)
--INI--
error_reporting=0
--FILE--
<?php
class foo {
	function cb($param) {
		var_dump($param);
		return "yes!";
	}
}

var_dump(preg_replace('', array(), ''));
var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
?>
--EXPECT--
bool(false)
array(4) {
  [0]=>
  string(5) "abcde"
  [1]=>
  string(2) "ab"
  [2]=>
  string(2) "cd"
  [3]=>
  string(1) "e"
}
string(4) "yes!"