mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08:00
16 lines
350 B
PHP
16 lines
350 B
PHP
--TEST--
|
|
mb_ereg_replace() compat test 3
|
|
--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/003.phpt) */
|
|
$a="\\'test";
|
|
echo mb_ereg_replace("\\\\'","'",$a);
|
|
?>
|
|
--EXPECT--
|
|
'test
|