mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
15 lines
383 B
PHP
15 lines
383 B
PHP
--TEST--
|
|
mb_ereg_replace() compat test 6
|
|
--SKIPIF--
|
|
<?php
|
|
extension_loaded('mbstring') or die('skip');
|
|
function_exists('mb_ereg_replace') or die("skip mb_ereg_replace() is not available in this build");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
/* (counterpart: ext/standard/tests/reg/008.phpt) */
|
|
echo mb_ereg_replace("([a-z]*)([-=+|]*)([0-9]+)","\\3 \\1 \\2\n","abc+-|=123");
|
|
?>
|
|
--EXPECT--
|
|
123 abc +-|=
|