IntlChar::isdigit
(PHP 7, PHP 8)
IntlChar::isdigit — コードポイントが、数字であるかを調べる
説明
指定されたコードポイントが、数字であるかを判定します。
戻り値が true
になるのは、 general category "Nd" (decimal digit numbers) にある文字です。
これは、Unicode 4 から始まり、
Numeric_Type of Decimal であるかをチェックするのと同じです。
パラメータ
codepoint
-
コードポイントを表す int 型の値 (例: U+2603 SNOWMAN を表す
0x2603
)、あるいは UTF-8 文字列としてエンコードされた文字 (例:"\u{2603}"
)。
例
例1 さまざまなコードポイントの例
<?php
var_dump(IntlChar::isdigit("A"));
var_dump(IntlChar::isdigit("1"));
var_dump(IntlChar::isdigit("\t"));
?>
上の例の出力は以下となります。
bool(false) bool(true) bool(false)
参考
- IntlChar::isalpha() - コードポイントがアルファベットかを調べる
- IntlChar::isalnum() - コードポイントが英数字であるかを調べる
- IntlChar::isxdigit() - コードポイントが、16進数の文字であるかを調べる
- ctype_digit() - 数字かどうかを調べる
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google