blob: d3deb616fcddaa50d880a894c2da75fcdf912b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
mb_ereg_replace() compatibility test 5 (counterpart: ext/standard/tests/reg/007.phpt)
--POST--
--GET--
--FILE--
<?php
$a="abcd";
$b=mb_ereg_replace("abcd","",$a);
echo "strlen(\$b)=".strlen($b);
?>
--EXPECT--
strlen($b)=0
|