| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
IntlChar::forDigit(PHP 7) IntlChar::forDigit — Get character representation for a given digit and radix 説明
public static int IntlChar::forDigit
( int
$digit
[, int $radix = 10
] )Determines the character representation for a specific digit in the specified radix. If the value of radix is not a valid radix, or the value of digit is not a valid digit in the specified radix, the null character (U+0000) is returned. The radix argument is valid if it is greater than or equal to 2 and less than or equal to 36. The digit argument is valid if 0 <= digit < radix. If the digit is less than 10, then '0' + digit is returned. Otherwise, the value 'a' + digit - 10 is returned. パラメータ
返り値The character representation (as a string) of the specified digit in the specified radix. 例例1 さまざまなコードポイントの例
<?php 上の例の出力は以下となります。 int(48) int(51) int(51) int(0) int(97) 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「IntlChar::forDigit - Get character representation for a given digit and radix」をGoogle検索
|