php8.5
Home/ Manual/ mbstring / functions/ mb_scrub

mb_scrub

PHP function Edit on GitHub ✎

(PHP 7 >= 7.2.0, PHP 8)

Replace ill-formed byte sequences with the substitute character

Description

mb_scrub(string $string, string|null $encoding = null): string

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

string

The input string.

encoding

The 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

VersionDescription

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
<?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:

output
41ff42
413f42
41efbfbd42

Using 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
<?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:

output
bool(false)
Malformed UTF-8 characters, possibly incorrectly encoded
int(3)

See Also

Source: reference/mbstring/functions/mb-scrub.xml · from the official PHP manual (php/doc-en)