php-src/ext/mbstring/tests/mb_regex_set_options.phpt
2020-02-03 22:52:20 +01:00

17 lines
394 B
PHP

--TEST--
mb_regex_set_options()
--SKIPIF--
<?php
extension_loaded('mbstring') or die("skip mbstring not available\n");
function_exists('mb_regex_set_options') or die("skip\n");
?>
--FILE--
<?php
mb_regex_set_options( 'x' );
print mb_ereg_replace(' -', '+', '- - - - -' );
mb_regex_set_options( '' );
print mb_ereg_replace(' -', '+', '- - - - -' );
?>
--EXPECT--
+ + + + +-++++