mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
8 lines
167 B
PHP
8 lines
167 B
PHP
<?php
|
|
mb_regex_set_options( 'x' );
|
|
print mb_ereg_replace(' -', '+', '- - - - -' );
|
|
|
|
mb_regex_set_options( '' );
|
|
print mb_ereg_replace(' -', '+', '- - - - -' );
|
|
?>
|