mb_eregi_replace()
mb_eregi_replace - Replace regular expression with multibyte support ignoring case
Syntax
string mb_eregi_replace (
string $pattern,
string $replace,
string $string,
string $option)
Arguments
- pattern - The regular expression pattern. Multibyte characters may be used. The case will be ignored.
- replace - The replacement text.
- string - The searched string.
- option - option has the same meaning as in mb_ereg_replace().
Description
Scans string for matches to pattern, then replaces the matched text with replacement.
Version
PHP 4.2.0, 5
Return value
The resultant string or FALSE on error.