mb_scrub

(PHP 7 >= 7.2.0, PHP 8)

mb_scrubDescription

Beschreibung

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

Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

string

encoding

Rückgabewerte

Changelog

Version Beschreibung
8.0.0 encoding is nullable now.
add a note add a note

User Contributed Notes 1 note

up
11
Sammitch
6 years ago
Replaces 'ill-formed' byte sequences with '?'.

See: https://github.com/php/php-src/pull/1099
To Top