update : 2015.11.03
php.shukuma.com검색:
|
IntlChar::charFromName(PHP 7) IntlChar::charFromName — Find Unicode character by name and return its code point value 설명
public static int IntlChar::charFromName
( string
$characterName
[, int $nameChoice = IntlChar::UNICODE_CHAR_NAME
] )Finds a Unicode character by its name and returns its code point value.
The name is matched exactly and completely. If the name does not correspond to a code point, A Unicode 1.0 name is matched only if it differs from the modern name. Unicode names are all uppercase. Extended names are lowercase followed by an uppercase hexadecimal number, and within angle brackets. 인수
반환값
The Unicode value of the code point with the given name (as an integer), or 예제Example #1 Testing different code points
<?php 위 예제의 출력: int(65) int(9731) int(9843) bool(false) 참고
|