summaryrefslogtreecommitdiff
path: root/ext/mbstring/tests/mb_regex_set_options.phpt
blob: 88ee9c9250064741aab78888c6dbf97813b4016d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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--
+ + + + +-++++