IntlChar
PHP Manual

IntlChar::charType

(PHP 7)

IntlChar::charTypeGet the general category value for a code point

説明

public static int IntlChar::charType ( mixed $codepoint )

Returns the general category value for the code point.

パラメータ

codepoint

コードポイントを表す integer 型の値 (例: U+2603 SNOWMAN を表す 0x2603)、あるいは UTF-8 文字列としてエンコードされた文字 (例: "\u{2603}")。

返り値

Returns the general category type, which may be one of the following constants:

例1 さまざまなコードポイントの例

<?php
var_dump
(IntlChar::charType("A") === IntlChar::CHAR_CATEGORY_UPPERCASE_LETTER);
var_dump(IntlChar::charType(".") === IntlChar::CHAR_CATEGORY_OTHER_PUNCTUATION);
var_dump(IntlChar::charType("\t") === IntlChar::CHAR_CATEGORY_CONTROL_CHAR);
var_dump(IntlChar::charType("\u{2603}") === IntlChar::CHAR_CATEGORY_OTHER_SYMBOL);
?>

上の例の出力は以下となります。

bool(true)
bool(true)
bool(true)
bool(true)

IntlChar
PHP Manual