| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
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 例例1 さまざまなコードポイントの例
<?php 上の例の出力は以下となります。 int(65) int(9731) int(9843) bool(false) 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「IntlChar::charFromName - Find Unicode character by name and return its code point value」をGoogle検索
|