Results of 1 - 10 of about 73 for decimal (0.005 sec.)
- ビット演算子 16516
- « 代入演算子 比較演算子 » PHP Manual 演算子 ビット演算子 ビット演算子 ビット演算子は、整数値の特
...
d %s %d\n" , $res , $val , $op , $places ); echo " Decimal:\n" ; printf ( " val=%d\n" , $val ); printf ( " re ...
HT ON POSITIVE INTEGERS --- Expression: 2 = 4 >> 1 Decimal: val=4 res=2 Binary: val=0000000000000000000000000 ...
bit shifted into left side Expression: 1 = 4 >> 2 Decimal: val=4 res=1 Binary: val=0000000000000000000000000 ...
000000000000000000000000001 Expression: 0 = 4 >> 3 Decimal: val=4 res=0 Binary: val=0000000000000000000000000 ...
-
https://man.plustar.jp/php/language.operators.bitwise.html
- [similar]
- The MongoDB\BSON\Decimal128 class 10410
- « MongoDB\BSON\Binary::unserialize MongoDB\BSON\Decimal128::__construct » PHP Manual MongoDB\BSO
...
N The MongoDB\BSON\Decimal128 class The MongoDB\BSON\Decimal128 class (mongod ...
b >=1.2.0) はじめに BSON type for the » Decimal128 floating-point format , which supports numbers ...
with up to 34 decimal digits (i.e. significant digits) and an exponent r ...
in PHP), which only stores an approximation of the decimal values, the decimal data type stores the exact val ...
-
https://man.plustar.jp/php/class.mongodb-bson-decimal128.html
- [similar]
- 浮動小数点数を丸める 9865
- « rand sin » PHP Manual Math 関数 浮動小数点数を丸める round (PHP 4, PHP 5, PHP 7, PHP 8) round
...
de の例 <?php echo 'Using PHP_ROUND_HALF_UP with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1. ...
o PHP_EOL ; echo 'Using PHP_ROUND_HALF_DOWN with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1. ...
o PHP_EOL ; echo 'Using PHP_ROUND_HALF_EVEN with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1. ...
ho PHP_EOL ; echo 'Using PHP_ROUND_HALF_ODD with 1 decimal digit precision' . PHP_EOL ; var_dump ( round ( 1. ...
-
https://man.plustar.jp/php/function.round.html
- [similar]
- Construct a new Decimal128 9585
- « MongoDB\BSON\Decimal128 MongoDB\BSON\Decimal128::jsonSerialize » PHP Manual MongoDB\BSON\Decimal
...
al128 Construct a new Decimal128 MongoDB\BSON\Decimal128::__construct (mongodb > ...
=1.2.0) MongoDB\BSON\Decimal128::__construct — Construct a new Decimal128 説明 ...
final public MongoDB\BSON\Decimal128::__construct ( string $value = ? ) 注意 : Mongo ...
DB\BSON\Decimal128 は、 MongoDB 3.4 以降でしか使えません。それより ...
-
https://man.plustar.jp/php/mongodb-bson-decimal128.construct.html
- [similar]
- 数値に関するフォーマット情報を得る 8034
- « levenshtein ltrim » PHP Manual String 関数 数値に関するフォーマット情報を得る localeconv (PHP
...
連想配列は、次のフィールドを有します。 配列要素 説明 decimal_point 小数点文字 thousands_sep 千毎の区切り文字 gr ...
rrency_symbol ローカルな通貨記号 (すなわち、$) mon_decimal_point 通貨用の小数点文字 mon_thousands_sep 通貨用の ...
fo ); } ?> 上の例の出力は以下となります。 Array ( [decimal_point] => . [thousands_sep] => [int_curr_symbol] = ...
> EUR [currency_symbol] => € [mon_decimal_point] => , [mon_thousands_sep] => [positive_sign] ...
-
https://man.plustar.jp/php/function.localeconv.html
- [similar]
- NumberFormatter クラス 7951
- « Collator::sort NumberFormatter::create » PHP Manual intl NumberFormatter クラス NumberFormatte
...
マッタの形式を定義します。 NumberFormatter::PATTERN_DECIMAL ( int ) パターンで定義する十進形式 NumberFormatter ...
::DECIMAL ( int ) 十進形式 NumberFormatter::CURRENCY ( int ) ...
ォルトの形式 NumberFormatter::IGNORE ( int ) PATTERN_DECIMAL のエイリアス これらの定数は、数値のパースやフォーマ ...
nt ) グループ区切り文字を使用する NumberFormatter::DECIMAL_ALWAYS_SHOWN ( int ) 常に小数点を表示する NumberFo ...
-
https://man.plustar.jp/php/class.numberformatter.html
- [similar]
- 数値フォーマッタを作成する 7951
- « NumberFormatter NumberFormatter::formatCurrency » PHP Manual NumberFormatter 数値フォーマッタを
...
マット形式 定数のいずれか。 NumberFormatter::PATTERN_DECIMAL あるいは NumberFormatter::PATTERN_RULEBASED を指定 ...
ォーマットをオープンします。 これは、それぞれ » ICU DecimalFormat ドキュメント あるいは » ICU RuleBasedNumberF ...
fmt = numfmt_create ( 'de_DE' , NumberFormatter :: DECIMAL ); echo numfmt_format ( $fmt , 1234567.89123456789 ...
new NumberFormatter ( 'de_DE' , NumberFormatter :: DECIMAL ); echo $fmt -> format ( 1234567.891234567890000 ) ...
-
https://man.plustar.jp/php/numberformatter.create.html
- [similar]
- 数字を千の位毎にグループ化してフォーマットする 7853
- « nl2br ord » PHP Manual String 関数 数字を千の位毎にグループ化してフォーマットする number_forma
...
ーマットする 説明 number_format ( float $num , int $decimals = 0 , ? string $decimal_separator = "." , ? strin ...
マットします。 パラメータ num フォーマットする数値。 decimals 小数点以下の桁数。 0 を指定すると、 戻り値の deci ...
mal_separator は省略されます。 decimal_separator 小数点を表す区切り文字。 thousands_separ ...
-
https://man.plustar.jp/php/function.number-format.html
- [similar]
- 10進数の桁の文字を桁の値として取得する 7489
- « IntlChar::charAge IntlChar::charDirection » PHP Manual IntlChar 10進数の桁の文字を桁の値として
...
て取得します。 対象となる文字は、一般カテゴリ "Nd" (decimal digit numbers) と a Numeric_Type of Decimal に属す ...
-
https://man.plustar.jp/php/intlchar.chardigitvalue.html
- [similar]
- Lexer examples 7489
- « 例 Parser examples » PHP Manual 例 Lexer examples Lexer examples 例1 Tokenize comma separated
...
d */ $token = array( "COMMA" => 1 , "CRLF" => 2 , "DECIMAL" => 3 , ); /* id => name */ $tokenIdToName = array ...
en [ "CRLF" ]); $lex -> push ( "[\d]+" , $token [ "DECIMAL" ]); $lex -> build (); $in = "0,1,2\r\n3,42,5\r\n6 ...
-
https://man.plustar.jp/php/parle.examples.lexer.html
- [similar]