wpseek.com
A WordPress-centric search engine for devs and theme authors



_wp_has_noncharacters_fallback › WordPress Function

Since6.9.0
Deprecated7.1.0
_wp_has_noncharacters_fallback ( $text )
Access:
  • private
Parameters:
  • (string) $text Are there noncharacters in this string?
    Required: Yes
See:
Returns:
  • (bool) Whether noncharacters were found in the string.
Defined at:
Codex:

Fallback support for determining if a string contains Unicode noncharacters.



Source

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

	return wp_has_noncharacters( $text );
}