php-src/ext/mbstring/tests/mb_regex_set_options.phpt
Nikita Popov 39131219e8
Migrate more SKIPIF -> EXTENSIONS (#7139)
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
2021-06-11 12:58:44 +02:00

18 lines
348 B
PHP

--TEST--
mb_regex_set_options()
--EXTENSIONS--
mbstring
--SKIPIF--
<?php
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--
+ + + + +-++++