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