valid_unicode

Definition:
function valid_unicode($i) {}

Helper function to determine if a Unicode value is valid.

Parameters

  • int $i: Unicode value

Return values

returns:True if the value was a valid Unicode number

Source code

function valid_unicode($i) {

	return ( $i == 0x9 || $i == 0xa || $i == 0xd ||

			($i >= 0x20 && $i <= 0xd7ff) ||

			($i >= 0xe000 && $i <= 0xfffd) ||

			($i >= 0x10000 && $i <= 0x10ffff) );

}

3335

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: