blob: cf3aee53d8b6b02542d3b28c46d92a87f48f287e (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
mb_ereg_replace() compatibility test 4 (counterpart: ext/standard/tests/reg/006.phpt)
--POST--
--GET--
--FILE--
<?php $a="This is a nice and simple string";
echo mb_ereg_replace("^This","That",$a);
?>
--EXPECT--
That is a nice and simple string
|