wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_wp_is_valid_utf8_fallback is private and should not be used in themes or plugins directly.
_wp_is_valid_utf8_fallback › WordPress Function
Seit6.9.0
Veraltetn/v
› _wp_is_valid_utf8_fallback ( $bytes )
| Zugriff: |
|
| Parameter: |
|
| Siehe: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Fallback mechanism for safely validating UTF-8 bytes.
Quellcode
function _wp_is_valid_utf8_fallback( string $bytes ): bool {
$bytes_length = strlen( $bytes );
if ( 0 === $bytes_length ) {
return true;
}
$next_byte_at = 0;
$invalid_length = 0;
_wp_scan_utf8( $bytes, $next_byte_at, $invalid_length );
return $bytes_length === $next_byte_at && 0 === $invalid_length;
}