wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



valid_unicode › WordPress Function

Depuis2.7.0
Dépréciéen/a
valid_unicode ( $i )
Paramètres:
  • (int) $i Unicode codepoint.
    Requis: Oui
Retourne:
  • (bool) Whether or not the codepoint is a valid Unicode codepoint.
Défini(e) dans:
Codex:

Determines if a Unicode codepoint is valid.



Source

function valid_unicode( $i ) {
	$i = (int) $i;

	return ( 0x9 === $i || 0xa === $i || 0xd === $i ||
		( 0x20 <= $i && $i <= 0xd7ff ) ||
		( 0xe000 <= $i && $i <= 0xfffd ) ||
		( 0x10000 <= $i && $i <= 0x10ffff )
	);
}