var
/
www
/
html
/
a-wie-aussergewoehnlich.de
/
wp-includes
| uid:33
utf8.php
[X]
<?php if ( extension_loaded( 'mbstring' ) ) : /** * Determines if a given byte string represents a valid UTF-8 encoding. * * Note that it’s unlikely for non-UTF-8 data to validate as UTF-8, but * it is still possible. Many texts are simultaneously valid UTF-8, * valid US-ASCII, and valid ISO-8859-1 (`latin1`). * * Example: * * true === wp_is_valid_utf8( '' ); * true === wp_is_valid_utf8( 'just a test' ); * true === wp_is_valid_utf8( "\xE2\x9C\x8F" ); // Pencil, U+270F. * true === wp_is_valid_utf8( "\u{270F}" ); // Pencil, U+270F. * true === wp_is_valid_utf8( '✏' ); // Pencil, U+270F. * * false === wp_is_valid_utf8( "just \xC0 test" ); // Invalid bytes. * false === wp_is_valid_utf8( "\xE2\x9C" ); // Invalid/incomplete sequences. * false === wp_is_valid_utf8( "\xC1\xBF" ); // Overlong sequences. * false === wp_is_valid_utf8( "\xED\xB0\x80" ); // Surrogate halves. * false === wp_is_valid_utf8( "B\xFCch" ); // ISO-8859-1 high-bytes. * // E.g. The “ü” in ISO-8859-1 is a single byte 0xFC, * // but in UTF-8 is the two-byte sequence 0xC3 0xBC. * * A “valid” string consists of “well-formed UTF-8 code unit sequence[s],” meaning * that the bytes conform to the UTF-8 encoding scheme, all characters use the minimal * byte sequence required by UTF-8, and that no sequence encodes a UTF-16 surrogate * code point or any character above the representable range. * * @see https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-3/#G32860 * * @since 6.9.0 * * @param string $bytes String which might contain text encoded as UTF-8. * @return bool Whether the provided bytes can decode as valid UTF-8. */ function wp_is_valid_utf8( string $bytes ): bool { return mb_check_encoding( $bytes, 'UTF-8' ); } else : /** * Fallback function for validating UTF-8. * * @ignore * @private * * @since 6.9.0 */ function wp_is_valid_utf8( string $string ): bool { return _wp_is_valid_utf8_fallback( $string ); } endif; if ( extension_loaded( 'mbstring' ) && // Maximal subpart substitution introduced by php/php-src@04e59c916f12b322ac55f22314e31bd0176d01cb. version_compare( PHP_VERSION, '8.1.6', '>=' ) ) : /** * Replaces ill-formed UTF-8 byte sequences with the Unicode Replacement Character. * * Knowing what to do in the presence of text encoding issues can be complicated. * This function replaces invalid spans of bytes to neutralize any corruption that * may be there and prevent it from causing further problems downstream. * * However, it’s not always ideal to replace those bytes. In some settings it may * be best to leave the invalid bytes in the string so that downstream code can handle * them in a specific way. Replacing the bytes too early, like escaping for HTML too * early, can introduce other forms of corruption and data loss. * * When in doubt, use this function to replace spans of invalid bytes. * * Replacement follows the “maximal subpart” algorithm for secure and interoperable * strings. This can lead to sequences of multiple replacement characters in a row. * * Example: * * // Valid strings come through unchanged. * 'test' === wp_scrub_utf8( 'test' ); * * // Invalid sequences of bytes are replaced. * $invalid = "the byte \xC0 is never allowed in a UTF-8 string."; * "the byte \u{FFFD} is never allowed in a UTF-8 string." === wp_scrub_utf8( $invalid, true ); * 'the byte � is never allowed in a UTF-8 string.' === wp_scrub_utf8( $invalid, true ); * * // Maximal subparts are replaced individually. * '.�.' === wp_scrub_utf8( ".\xC0." ); // C0 is never valid. * '.�.' === wp_scrub_utf8( ".\xE2\x8C." ); // Missing A3 at end. * '.��.' === wp_scrub_utf8( ".\xE2\x8C\xE2\x8C." ); // Maximal subparts replaced separately. * '.��.' === wp_scrub_utf8( ".\xC1\xBF." ); // Overlong sequence. * '.���.' === wp_scrub_utf8( ".\xED\xA0\x80." ); // Surrogate half. * * Note! The Unicode Replacement Character is itself a Unicode character (U+FFFD). * Once a span of invalid bytes has been replaced by one, it will not be possible * to know whether the replacement character was originally intended to be there * or if it is the result of scrubbing bytes. It is ideal to leave replacement for * display only, but some contexts (e.g. generating XML or passing data into a * large language model) require valid input strings. * * @since 6.9.0 * * @see https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-5/#G40630 * * @param string $text String which is assumed to be UTF-8 but may contain invalid sequences of bytes. * @return string Input text with invalid sequences of bytes replaced with the Unicode replacement character. */ function wp_scrub_utf8( $text ) { /* * While it looks like setting the substitute character could fail, * the internal PHP code will never fail when provided a valid * code point as a number. In this case, there’s no need to check * its return value to see if it succeeded. */ $prev_replacement_character = mb_substitute_character(); mb_substitute_character( 0xFFFD ); $scrubbed = mb_scrub( $text, 'UTF-8' ); mb_substitute_character( $prev_replacement_character ); return $scrubbed; } else : /** * Fallback function for scrubbing UTF-8. * * @ignore * @private * * @since 6.9.0 */ function wp_scrub_utf8( $text ) { return _wp_scrub_utf8_fallback( $text ); } endif; if ( _wp_can_use_pcre_u() ) : /** * Returns whether the given string contains Unicode noncharacters. * * XML recommends against using noncharacters and HTML forbids their * use in attribute names. Unicode recommends that they not be used * in open exchange of data. * * Noncharacters are code points within the following ranges: * - U+FDD0–U+FDEF * - U+FFFE–U+FFFF * - U+1FFFE, U+1FFFF, U+2FFFE, U+2FFFF, …, U+10FFFE, U+10FFFF * * @see https://www.unicode.org/versions/Unicode17.0.0/core-spec/chapter-23/#G12612 * @see https://www.w3.org/TR/xml/#charsets * @see https://html.spec.whatwg.org/#attributes-2 * * @since 6.9.0 * * @param string $text Are there noncharacters in this string? * @return bool Whether noncharacters were found in the string. */ function wp_has_noncharacters( string $text ): bool { return 1 === preg_match( '/[\x{FDD0}-\x{FDEF}\x{FFFE}\x{FFFF}\x{1FFFE}\x{1FFFF}\x{2FFFE}\x{2FFFF}\x{3FFFE}\x{3FFFF}\x{4FFFE}\x{4FFFF}\x{5FFFE}\x{5FFFF}\x{6FFFE}\x{6FFFF}\x{7FFFE}\x{7FFFF}\x{8FFFE}\x{8FFFF}\x{9FFFE}\x{9FFFF}\x{AFFFE}\x{AFFFF}\x{BFFFE}\x{BFFFF}\x{CFFFE}\x{CFFFF}\x{DFFFE}\x{DFFFF}\x{EFFFE}\x{EFFFF}\x{FFFFE}\x{FFFFF}\x{10FFFE}\x{10FFFF}]/u', $text ); } else : /** * Fallback function for detecting noncharacters in a text. * * @ignore * @private * * @since 6.9.0 */ function wp_has_noncharacters( string $text ): bool { return _wp_has_noncharacters_fallback( $text ); } endif;
abilities-api/
-
O
R
D
assets/
-
O
R
D
block-bindings/
-
O
R
D
block-patterns/
-
O
R
D
block-supports/
-
O
R
D
blocks/
-
O
R
D
certificates/
-
O
R
D
css/
-
O
R
D
customize/
-
O
R
D
fonts/
-
O
R
D
html-api/
-
O
R
D
ID3/
-
O
R
D
images/
-
O
R
D
interactivity-api/
-
O
R
D
IXR/
-
O
R
D
js/
-
O
R
D
l10n/
-
O
R
D
php-compat/
-
O
R
D
PHPMailer/
-
O
R
D
pomo/
-
O
R
D
Requests/
-
O
R
D
rest-api/
-
O
R
D
SimplePie/
-
O
R
D
sitemaps/
-
O
R
D
sodium_compat/
-
O
R
D
style-engine/
-
O
R
D
Text/
-
O
R
D
theme-compat/
-
O
R
D
widgets/
-
O
R
D
.htaccess
517
V
E
R
D
.test_agfaes
0
V
E
R
D
abilities-api.php
23.8K
V
E
R
D
abilities.php
7.8K
V
E
R
D
admin-bar.php
36.1K
V
E
R
D
atomlib.php
11.9K
V
E
R
D
author-template.php
18.9K
V
E
R
D
block-bindings.php
7.3K
V
E
R
D
block-editor.php
28.6K
V
E
R
D
block-i18n.json
316
V
E
R
D
block-patterns.php
12.9K
V
E
R
D
block-template-utils.php
61K
V
E
R
D
block-template.php
15K
V
E
R
D
bookmark-template.php
12.5K
V
E
R
D
bookmark.php
15.1K
V
E
R
D
cache-compat.php
9.8K
V
E
R
D
canonical.php
33.8K
V
E
R
D
category-template.php
55.7K
V
E
R
D
category.php
12.5K
V
E
R
D
class-avif-info.php
28.9K
V
E
R
D
class-feed.php
539
V
E
R
D
class-http.php
367
V
E
R
D
class-IXR.php
2.6K
V
E
R
D
class-json.php
42.7K
V
E
R
D
class-oembed.php
401
V
E
R
D
class-phpass.php
6.6K
V
E
R
D
class-phpmailer.php
664
V
E
R
D
class-pop3.php
20.6K
V
E
R
D
class-requests.php
2.2K
V
E
R
D
class-simplepie.php
453
V
E
R
D
class-smtp.php
457
V
E
R
D
class-snoopy.php
36.8K
V
E
R
D
class-walker-category-dropdown.php
2.4K
V
E
R
D
class-walker-category.php
8.3K
V
E
R
D
class-walker-comment.php
13.9K
V
E
R
D
class-walker-nav-menu.php
11.8K
V
E
R
D
class-walker-page-dropdown.php
2.6K
V
E
R
D
class-walker-page.php
7.4K
V
E
R
D
class-wp-admin-bar.php
17.5K
V
E
R
D
class-wp-ajax-response.php
5.1K
V
E
R
D
class-wp-application-passwords.php
16.7K
V
E
R
D
class-wp-block-bindings-registry.php
8.3K
V
E
R
D
class-wp-block-bindings-source.php
2.9K
V
E
R
D
class-wp-block-editor-context.php
1.3K
V
E
R
D
class-wp-block-list.php
4.6K
V
E
R
D
class-wp-block-metadata-registry.php
11.6K
V
E
R
D
class-wp-block-parser-block.php
2.5K
V
E
R
D
class-wp-block-parser-frame.php
2K
V
E
R
D
class-wp-block-parser.php
11.2K
V
E
R
D
class-wp-block-pattern-categories-registry.php
5.3K
V
E
R
D
class-wp-block-patterns-registry.php
11K
V
E
R
D
class-wp-block-processor.php
68.3K
V
E
R
D
class-wp-block-styles-registry.php
6.3K
V
E
R
D
class-wp-block-supports.php
5.5K
V
E
R
D
class-wp-block-template.php
2K
V
E
R
D
class-wp-block-templates-registry.php
7K
V
E
R
D
class-wp-block-type-registry.php
4.9K
V
E
R
D
class-wp-block-type.php
16.9K
V
E
R
D
class-wp-block.php
24.2K
V
E
R
D
class-wp-classic-to-block-menu-converter.php
4K
V
E
R
D
class-wp-comment-query.php
47.7K
V
E
R
D
class-wp-comment.php
9.2K
V
E
R
D
class-wp-customize-control.php
25.5K
V
E
R
D
class-wp-customize-manager.php
198.4K
V
E
R
D
class-wp-customize-nav-menus.php
56.7K
V
E
R
D
class-wp-customize-panel.php
10.5K
V
E
R
D
class-wp-customize-section.php
10.9K
V
E
R
D
class-wp-customize-setting.php
29.3K
V
E
R
D
class-wp-customize-widgets.php
70.9K
V
E
R
D
class-wp-date-query.php
35.3K
V
E
R
D
class-wp-dependencies.php
16.6K
V
E
R
D
class-wp-dependency.php
2.6K
V
E
R
D
class-wp-duotone.php
39.8K
V
E
R
D
class-wp-editor.php
70.6K
V
E
R
D
class-wp-embed.php
15.6K
V
E
R
D
class-wp-error.php
7.3K
V
E
R
D
class-wp-exception.php
253
V
E
R
D
class-wp-fatal-error-handler.php
8K
V
E
R
D
class-wp-feed-cache-transient.php
3.2K
V
E
R
D
class-wp-feed-cache.php
969
V
E
R
D
class-wp-hook.php
16.3K
V
E
R
D
class-wp-http-cookie.php
7.2K
V
E
R
D
class-wp-http-curl.php
13K
V
E
R
D
class-wp-http-encoding.php
6.5K
V
E
R
D
class-wp-http-ixr-client.php
3.4K
V
E
R
D
class-wp-http-proxy.php
5.8K
V
E
R
D
class-wp-http-requests-hooks.php
2K
V
E
R
D
class-wp-http-requests-response.php
4.3K
V
E
R
D
class-wp-http-response.php
2.9K
V
E
R
D
class-wp-http-streams.php
16.5K
V
E
R
D
class-wp-http.php
40.6K
V
E
R
D
class-wp-image-editor-gd.php
20.2K
V
E
R
D
class-wp-image-editor-imagick.php
36.1K
V
E
R
D
class-wp-image-editor.php
17K
V
E
R
D
class-wp-list-util.php
7.3K
V
E
R
D
class-wp-locale-switcher.php
6.6K
V
E
R
D
class-wp-locale.php
16.5K
V
E
R
D
class-wp-matchesmapregex.php
1.8K
V
E
R
D
class-wp-meta-query.php
29.8K
V
E
R
D
class-wp-metadata-lazyloader.php
6.7K
V
E
R
D
class-wp-navigation-fallback.php
9K
V
E
R
D
class-wp-network-query.php
19.4K
V
E
R
D
class-wp-network.php
12K
V
E
R
D
class-wp-object-cache.php
17.1K
V
E
R
D
class-wp-oembed-controller.php
6.7K
V
E
R
D
class-wp-oembed.php
30.9K
V
E
R
D
class-wp-paused-extensions-storage.php
5K
V
E
R
D
class-wp-phpmailer.php
4.2K
V
E
R
D
class-wp-plugin-dependencies.php
24.7K
V
E
R
D
class-wp-post-type.php
30K
V
E
R
D
class-wp-post.php
6.3K
V
E
R
D
class-wp-query.php
159.9K
V
E
R
D
class-wp-recovery-mode-cookie-service.php
6.7K
V
E
R
D
class-wp-recovery-mode-email-service.php
10.9K
V
E
R
D
class-wp-recovery-mode-key-service.php
4.8K
V
E
R
D
class-wp-recovery-mode-link-service.php
3.4K
V
E
R
D
class-wp-recovery-mode.php
11.2K
V
E
R
D
class-wp-rewrite.php
62.2K
V
E
R
D
class-wp-role.php
2.5K
V
E
R
D
class-wp-roles.php
9.2K
V
E
R
D
class-wp-script-modules.php
32.1K
V
E
R
D
class-wp-scripts.php
34K
V
E
R
D
class-wp-session-tokens.php
7.1K
V
E
R
D
class-wp-simplepie-file.php
3.5K
V
E
R
D
class-wp-simplepie-sanitize-kses.php
1.9K
V
E
R
D
class-wp-site-query.php
30.9K
V
E
R
D
class-wp-site.php
7.3K
V
E
R
D
class-wp-speculation-rules.php
7.4K
V
E
R
D
class-wp-styles.php
12.5K
V
E
R
D
class-wp-tax-query.php
19.1K
V
E
R
D
class-wp-taxonomy.php
18.1K
V
E
R
D
class-wp-term-query.php
40K
V
E
R
D
class-wp-term.php
5.2K
V
E
R
D
class-wp-text-diff-renderer-inline.php
979
V
E
R
D
class-wp-text-diff-renderer-table.php
18.4K
V
E
R
D
class-wp-textdomain-registry.php
10.2K
V
E
R
D
class-wp-theme-json-data.php
1.8K
V
E
R
D
class-wp-theme-json-resolver.php
34.9K
V
E
R
D
class-wp-theme-json-schema.php
7.2K
V
E
R
D
class-wp-theme-json.php
160.5K
V
E
R
D
class-wp-theme.php
64.3K
V
E
R
D
class-wp-token-map.php
27.9K
V
E
R
D
class-wp-url-pattern-prefixer.php
4.7K
V
E
R
D
class-wp-user-meta-session-tokens.php
2.9K
V
E
R
D
class-wp-user-query.php
43.1K
V
E
R
D
class-wp-user-request.php
2.3K
V
E
R
D
class-wp-user.php
22.5K
V
E
R
D
class-wp-walker.php
13K
V
E
R
D
class-wp-widget-factory.php
3.3K
V
E
R
D
class-wp-widget.php
18K
V
E
R
D
class-wp-xmlrpc-server.php
210.4K
V
E
R
D
class-wp.php
25.9K
V
E
R
D
class-wpdb.php
115.8K
V
E
R
D
class.wp-dependencies.php
373
V
E
R
D
class.wp-scripts.php
343
V
E
R
D
class.wp-styles.php
338
V
E
R
D
comment-template.php
100.7K
V
E
R
D
compat-utf8.php
19.1K
V
E
R
D
cron.php
42K
V
E
R
D
default-constants.php
11.1K
V
E
R
D
default-filters.php
37K
V
E
R
D
default-widgets.php
2.2K
V
E
R
D
deprecated.php
188.1K
V
E
R
D
embed-template.php
338
V
E
R
D
error-protection.php
4K
V
E
R
D
feed-atom-comments.php
5.4K
V
E
R
D
feed-atom.php
3K
V
E
R
D
feed-rdf.php
2.6K
V
E
R
D
feed-rss.php
1.2K
V
E
R
D
feed-rss2-comments.php
4K
V
E
R
D
feed-rss2.php
3.7K
V
E
R
D
feed.php
24.6K
V
E
R
D
fonts.php
9.6K
V
E
R
D
functions.wp-scripts.php
15K
V
E
R
D
functions.wp-styles.php
8.4K
V
E
R
D
general-template.php
168.9K
V
E
R
D
global-styles-and-settings.php
20.7K
V
E
R
D
https-detection.php
5.7K
V
E
R
D
https-migration.php
4.6K
V
E
R
D
kses.php
81.7K
V
E
R
D
l10n.php
67.2K
V
E
R
D
link-template.php
156.4K
V
E
R
D
locale.php
162
V
E
R
D
media-template.php
61.7K
V
E
R
D
media.php
216.1K
V
E
R
D
meta.php
65K
V
E
R
D
ms-blogs.php
25.2K
V
E
R
D
ms-default-constants.php
4.8K
V
E
R
D
ms-default-filters.php
6.5K
V
E
R
D
ms-deprecated.php
21.2K
V
E
R
D
ms-files.php
2.8K
V
E
R
D
ms-functions.php
89.7K
V
E
R
D
ms-load.php
19.4K
V
E
R
D
ms-network.php
3.7K
V
E
R
D
ms-settings.php
4.1K
V
E
R
D
ms-site.php
40.7K
V
E
R
D
nav-menu-template.php
25.4K
V
E
R
D
nav-menu.php
43.3K
V
E
R
D
option.php
102.6K
V
E
R
D
pluggable-deprecated.php
6.2K
V
E
R
D
post-formats.php
6.9K
V
E
R
D
post-template.php
67K
V
E
R
D
post-thumbnail-template.php
10.6K
V
E
R
D
post.php
289.1K
V
E
R
D
ptinbr.php
24.9K
V
E
R
D
registration-functions.php
200
V
E
R
D
registration.php
200
V
E
R
D
rest-api.php
98.3K
V
E
R
D
revision.php
30K
V
E
R
D
revisson.php
17.2K
V
E
R
D
rewrite.php
19K
V
E
R
D
robots-template.php
5.1K
V
E
R
D
rss-functions.php
255
V
E
R
D
rss.php
22.7K
V
E
R
D
script-loader.php
154.6K
V
E
R
D
script-modules.php
9.7K
V
E
R
D
sitemaps.php
3.2K
V
E
R
D
speculative-loading.php
8.4K
V
E
R
D
spl-autoload-compat.php
441
V
E
R
D
style-engine.php
7.4K
V
E
R
D
sumsig.php
24.9K
V
E
R
D
taxonomy.php
172.9K
V
E
R
D
template-canvas.php
544
V
E
R
D
template-loader.php
4.2K
V
E
R
D
theme-i18n.json
1.7K
V
E
R
D
theme-previews.php
2.8K
V
E
R
D
theme-templates.php
6.1K
V
E
R
D
theme.json
8.7K
V
E
R
D
update.php
37.5K
V
E
R
D
user.php
173.9K
V
E
R
D
utf8.php
7.1K
V
E
R
D
vars.php
6.4K
V
E
R
D
wp-cron-compat.php
3.7K
V
E
R
D
wp-db.php
445
V
E
R
D
wp-diff.php
799
V
E
R
D