wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_wp_has_noncharacters_fallback › WordPress Function

Seit6.9.0
Veraltet7.1.0
_wp_has_noncharacters_fallback ( $text )
Zugriff:
  • private
Parameter:
  • (string) $text Are there noncharacters in this string?
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) Whether noncharacters were found in the string.
Definiert in:
Codex:

Fallback support for determining if a string contains Unicode noncharacters.



Quellcode

function _wp_has_noncharacters_fallback( string $text ): bool {
	_deprecated_function( __FUNCTION__, '7.1.0' );

	return wp_has_noncharacters( $text );
}