mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
16 lines
344 B
PHP
16 lines
344 B
PHP
--TEST--
|
|
mb_ereg_replace() compat test 2
|
|
--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/002.phpt) */
|
|
$a="abc123";
|
|
echo mb_ereg_replace("123","",$a);
|
|
?>
|
|
--EXPECT--
|
|
abc
|