mb_ereg_replace-compat-04.phpt 384 B

12345678910111213141516
  1. --TEST--
  2. mb_ereg_replace() compat test 4
  3. --EXTENSIONS--
  4. mbstring
  5. --SKIPIF--
  6. <?php
  7. function_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--
  16. That is a nice and simple string