summaryrefslogtreecommitdiff
path: root/ext/standard/tests/reg/007.phpt
blob: b2646f842f6f3748269bb4416d85199e2117d752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Test empty result buffer in reg_replace
--POST--
--GET--
--FILE--
<?php 
	$a="abcd";
	$b=ereg_replace("abcd","",$a);
	echo "strlen(\$b)=".strlen($b);
?>
--EXPECT--
strlen($b)=0