Advertisement
Guest User

Untitled

a guest
Oct 20th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /**
  2. * 文字がBMP外かどうかを返す
  3. *
  4. * 4バイト以上であればBMP外とみなす
  5. * @param string $utf8Char UTF-8 の1文字
  6. * @return bool BMP外かどうか
  7. */
  8. function isOuterBmpUnicode($utf8Char) {
  9. $strHex = bin2hex($utf8Char);
  10. if(strlen($strHex) > 6) {
  11. return true;
  12. }
  13. return false;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement