mb_scrub
(PHP 7 >= 7.2.0, PHP 8)
Replace ill-formed byte sequences with the substitute character
Description
Perform a character set conversion from the specified encoding, or the default encoding if no encoding was specified, to the same encoding. This has the effect of replacing any invalid byte sequences with the substitute character.
Parameters
stringThe input string.
encodingThe encoding used to interpret
string. If it is omitted or null, the mbstring.internal_encoding setting will be used if set, otherwise the default_charset setting will be used.
Return Values
The String result with invalid byte sequences replaced.
Changelog
| Version | Description |
|---|
Examples
Byte-level replacement performed by mb_scrub()
bin2hex() is used here because terminals, browsers and fonts may render an ill-formed byte sequence with a replacement character of their own, which hides what the string actually contains.
<?php
// The byte 0xFF cannot appear in a valid UTF-8 string.
$input = "A\xFFB";
echo bin2hex($input), "\n";
// The default substitute character is "?" (0x3F).
echo bin2hex(mb_scrub($input, 'UTF-8')), "\n";
// U+FFFD REPLACEMENT CHARACTER is encoded as EF BF BD in UTF-8.
mb_substitute_character(0xFFFD);
echo bin2hex(mb_scrub($input, 'UTF-8')), "\n";
?>The above example will output:
41ff42
413f42
41efbfbd42Using mb_scrub() before UTF-8 aware processing
PCRE patterns using the u modifier reject subjects that are not well-formed UTF-8. Scrubbing the input first makes it acceptable.
<?php
$input = "A\xFFB";
var_dump(preg_match_all('/./us', $input));
echo preg_last_error_msg(), "\n";
$clean = mb_scrub($input, 'UTF-8');
var_dump(preg_match_all('/./us', $clean));
?>The above example will output:
bool(false)
Malformed UTF-8 characters, possibly incorrectly encoded
int(3)