1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/ext/mbstring/tests/025.inc
Moriyoshi Koizumi 9520422501 Fixed the encoding
2002-10-10 17:16:46 +00:00

8 lines
167 B
PHP

<?php
mb_regex_set_options( 'x' );
print mb_ereg_replace(' -', '+', '- - - - -' );
mb_regex_set_options( '' );
print mb_ereg_replace(' -', '+', '- - - - -' );
?>