1--TEST--
2mb_ereg_replace() compat test 4
3--EXTENSIONS--
4mbstring
5--SKIPIF--
6<?php
7function_exists('mb_ereg_replace') or die("skip mb_ereg_replace() is not available in this build");
8?>
9--FILE--
10<?php
11/* (counterpart: ext/standard/tests/reg/006.phpt) */
12  $a="This is a nice and simple string";
13  echo mb_ereg_replace("^This","That",$a);
14?>
15--EXPECT--
16That is a nice and simple string
17