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