Results of 1 - 10 of about 33 for digit (0.030 sec.)
- 数字かどうかを調べる 12417
- « ctype_cntrl ctype_graph » PHP Manual Ctype 関数 数字かどうかを調べる ctype_digit (PHP 4 >= 4.0
...
.4, PHP 5, PHP 7, PHP 8) ctype_digit — 数字かどうかを調べる 説明 ctype_digit ( mixed $t ...
した場合、結果は常に false になります。 例 例1 ctype_digit() の例 <?php $strings = array( '1820.20' , '10002' ...
); foreach ( $strings as $testcase ) { if ( ctype_digit ( $testcase )) { echo "The string $testcase consis ...
ts of all digits.\n" ; } else { echo "The string $testcase does no ...
-
https://man.plustar.jp/php/function.ctype-digit.html
- [similar]
- ロケールの設定に基づいてローカルな日付・時間をフォーマットする 12337
- « mktime strptime » PHP Manual 日付・時刻 関数 ロケールの設定に基づいてローカルな日付・時間をフォ
...
ull month name, based on the locale' , 'C' => 'Two digit representation of the century (year divided by 100 ...
F' => 'Same as "%Y-%m-%d"' , 'G' => 'The full four-digit version of %g' , 'H' => 'Two digit representation ...
of the hour in 24-hour format' , 'I' => 'Two digit representation of the hour in 12-hour format' , 'J ...
' => '' , 'K' => '' , 'L' => '' , 'M' => 'Two digit representation of the minute' , 'N' => '' , 'O' => ...
-
https://man.plustar.jp/php/function.strftime.html
- [similar]
- コードポイントの10進の数値を、指定された基数で返す 11855
- « IntlChar::chr IntlChar::enumCharNames » PHP Manual IntlChar コードポイントの10進の数値を、指定
...
された基数で返す IntlChar::digit (PHP 7, PHP 8) IntlChar::digit — コードポイントの1 ...
、指定された基数で返す 説明 public static IntlChar::digit ( int | string $codepoint , int $base = 10 ): int ...
である場合。 これは、general category "Nd" (decimal digit numbers)、かつ Numeric_Type of Decimal である場合で ...
まなコードポイントの例 <?php var_dump ( IntlChar :: digit ( "0" )); var_dump ( IntlChar :: digit ( "3" )); v ...
-
https://man.plustar.jp/php/intlchar.digit.html
- [similar]
- 浮動小数点数を丸める 10604
- « rand sin » PHP Manual Math 関数 浮動小数点数を丸める round (PHP 4, PHP 5, PHP 7, PHP 8) round
...
<?php echo 'Using PHP_ROUND_HALF_UP with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1.55 , 1 ...
L ; echo 'Using PHP_ROUND_HALF_DOWN with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1.55 , 1 ...
L ; echo 'Using PHP_ROUND_HALF_EVEN with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1.55 , 1 ...
OL ; echo 'Using PHP_ROUND_HALF_ODD with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1.55 , 1 ...
-
https://man.plustar.jp/php/function.round.html
- [similar]
- 指定された整数と基数を表す文字を取得する 10203
- « IntlChar::foldCase IntlChar::getBidiPairedBracket » PHP Manual IntlChar 指定された整数と基数を
...
表す文字を取得する IntlChar::forDigit (PHP 7, PHP 8) IntlChar::forDigit — 指定された整数 ...
を表す文字を取得する 説明 public static IntlChar::forDigit ( int $digit , int $base = 10 ): int 指定された整数 ...
は 2 以上 36 以下の場合に有効です。 整数値は、 0 <= digit < radix の場合に有効です。 整数値が 10 より小さい場 ...
指定された整数値 - 10 の値を返します。 パラメータ digit 文字に変換する整数値。 base 基数 (デフォルトは 10 ...
-
https://man.plustar.jp/php/intlchar.fordigit.html
- [similar]
- ジェネレータとは 9256
- « ジェネレータ ジェネレータの構文 » PHP Manual ジェネレータ ジェネレータとは ジェネレータとは (P
...
が同じ結果を返すことに注目しましょう */ echo 'Single digit odd numbers from range(): ' ; foreach ( range ( 1 ...
) { echo " $number " ; } echo "\n" ; echo 'Single digit odd numbers from xrange(): ' ; foreach ( xrange ( ...
ber " ; } ?> 上の例の出力は以下となります。 Single digit odd numbers from range(): 1 3 5 7 9 Single digit o ...
オブジェクト , メモリ , Generator , from , xrange , digit ...
-
https://man.plustar.jp/php/language.generators.overview.html
- [similar]
- コードポイントが、16進数の文字であるかを調べる 8631
- « IntlChar::isWhitespace IntlChar::ord » PHP Manual IntlChar コードポイントが、16進数の文字である
...
かを調べる IntlChar::isxdigit (PHP 7, PHP 8) IntlChar::isxdigit — コードポイント ...
文字であるかを調べる 説明 public static IntlChar::isxdigit ( int | string $codepoint ): ? bool 指定されたコー ...
が true になるのは、 general category "Nd" (decimal digit numbers) にある文字か、 ASCII と 全角ASCII の a-f ...
.FF46 に入る文字です) この関数の動作は、 IntlChar::digit($codepoint, 16) >= 0 と同等です。 パラメータ codep ...
-
https://man.plustar.jp/php/intlchar.isxdigit.html
- [similar]
- Character classes 8470
- « Character representations Unicode character classes » PHP Manual Pattern matching Character cl
...
a listed range. . Any character, default [^\n]. \d Digit character, [0-9] . \D Non-digit character, [^0-9] ...
-
https://man.plustar.jp/php/parle.regex.charclass.html
- [similar]
- IntlChar クラス 8230
- « idn_to_utf8 IntlChar::charAge » PHP Manual intl IntlChar クラス IntlChar クラス (PHP 7, PHP 8)
...
TY_BINARY_START = 0 ; const int PROPERTY_ASCII_HEX_DIGIT = 1 ; const int PROPERTY_BIDI_CONTROL = 2 ; const ...
OPERTY_GRAPHEME_LINK = 12 ; const int PROPERTY_HEX_DIGIT = 13 ; const int PROPERTY_HYPHEN = 14 ; const int ...
PERTY_POSIX_PRINT = 47 ; const int PROPERTY_POSIX_XDIGIT = 48 ; const int PROPERTY_CASED = 49 ; const int P ...
SPACING_MARK = 8 ; const int CHAR_CATEGORY_DECIMAL_DIGIT_NUMBER = 9 ; const int CHAR_CATEGORY_LETTER_NUMBER ...
-
https://man.plustar.jp/php/class.intlchar.html
- [similar]
- Character representations 7684
- « Pattern matching Character classes » PHP Manual Pattern matching Character representations Cha
...
cal tab, \x0b. \oct Character specified by a three-digit octal code. \xhex Character specified by a hex cod ...
-
https://man.plustar.jp/php/parle.regex.chars.html
- [similar]