1--TEST--
2mb_regex_set_options()
3--EXTENSIONS--
4mbstring
5--SKIPIF--
6<?php
7function_exists('mb_regex_set_options') or die("skip\n");
8?>
9--FILE--
10<?php
11    mb_regex_set_options( 'x' );
12    print mb_ereg_replace(' -', '+', '- - - - -' );
13
14    mb_regex_set_options( '' );
15    print mb_ereg_replace(' -', '+', '- - - - -' );
16?>
17--EXPECT--
18+ + + + +-++++
19