mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
16 lines
362 B
PHP
16 lines
362 B
PHP
--TEST--
|
|
mb_ereg_replace() compat test 8
|
|
--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/011.phpt) */
|
|
$a="abc123";
|
|
echo mb_ereg_replace("123","def\\0ghi",$a);
|
|
?>
|
|
--EXPECT--
|
|
abcdef123ghi
|