検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 2650 for 上の (0.104 sec.)
Returns the sum of all values in the map 2873
« Ds\Map::sorted Ds\Map::toArray » PHP Manual Map Returns the sum of all values in the map Ds\Ma ... => 2 , "c" => 3 ]); var_dump ( $map -> sum ()); ?> 上の例の出力は、 たとえば以下のようになります。 int(6) 例 ... 2.5 , "c" => 3 ]); var_dump ( $map -> sum ()); ?> 上の例の出力は、 たとえば以下のようになります。 float(6. ...
https://man.plustar.jp/php/ds-map.sum.html - [similar]
Returns the value at a given index 2873
« Ds\Sequence::first Ds\Sequence::insert » PHP Manual Sequence Returns the value at a given inde ... get ( 1 )); var_dump ( $sequence -> get ( 2 )); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ... $sequence [ 1 ]); var_dump ( $sequence [ 2 ]); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-sequence.get.html - [similar]
Updates a value at a given index 2873
« Ds\Sequence::rotate Ds\Sequence::shift » PHP Manual Sequence Updates a value at a given index ... ence -> set ( 1 , "_" ); print_r ( $sequence ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ... $sequence [ 1 ] = "_" ; print_r ( $sequence ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ...
https://man.plustar.jp/php/ds-sequence.set.html - [similar]
Returns the value at a given index 2873
« Ds\Set::first Ds\Set::intersect » PHP Manual Set Returns the value at a given index Ds\Set::ge ... t -> get ( 1 )); var_dump ( $set -> get ( 2 )); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ... var_dump ( $set [ 1 ]); var_dump ( $set [ 2 ]); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-set.get.html - [similar]
Returns the value at a given index 2873
« Ds\Vector::first Ds\Vector::insert » PHP Manual Vector Returns the value at a given index Ds\V ... > get ( 1 )); var_dump ( $vector -> get ( 2 )); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ... mp ( $vector [ 1 ]); var_dump ( $vector [ 2 ]); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-vector.get.html - [similar]
Updates a value at a given index 2873
« Ds\Vector::rotate Ds\Vector::shift » PHP Manual Vector Updates a value at a given index Ds\Vec ... vector -> set ( 1 , "_" ); print_r ( $vector ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ... ]); $vector [ 1 ] = "_" ; print_r ( $vector ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ...
https://man.plustar.jp/php/ds-vector.set.html - [similar]
指定した色に最も近い色のインデックスを取得する 2873
« imagecolorat imagecolorclosestalpha » PHP Manual GD および Image 関数 指定した色に最も近い色の ... 中の色のインデックスを返します。 指定した色とパレット上の各色の「距離」は、 RGB 値が三次元空間上の点の座標を表 ... t match: $result .\n" ; } imagedestroy ( $im ); ?> 上の例の出力は、 たとえば以下のようになります。 #0: Sear ...
https://man.plustar.jp/php/function.imagecolorclosest.html - [similar]
切り取る長方形を設定する 2873
« imagesetbrush imagesetinterpolation » PHP Manual GD および Image 関数 切り取る長方形を設定する ... ような画像作成関数が返す GdImage オブジェクト。 x1 左上のx座標 y1 左上のy座標 x2 右下のx座標 y2 右下のy座標 ...
https://man.plustar.jp/php/function.imagesetclip.html - [similar]
変数が数字または数値形式の文字列であるかを調べる 2873
« is_null is_object » PHP Manual 変数操作 関数 変数が数字または数値形式の文字列であるかを調べる ... nt , true ) . " is NOT numeric" , PHP_EOL ; } } ?> 上の例の出力は以下となります。 '42' is numeric 1337 is n ... nt , true ) . " is NOT numeric" , PHP_EOL ; } } ?> 上の例の PHP 8 での出力は、このようになります。: ' 42' i ... eric ' 9001' is NOT numeric '9001 ' is NOT numeric 上の例の PHP 7 での出力は、このようになります。 ' 42' is ...
https://man.plustar.jp/php/function.is-numeric.html - [similar]
浮動小数点数を丸める 2873
« rand sin » PHP Manual Math 関数 浮動小数点数を丸める round (PHP 4, PHP 5, PHP 7, PHP 8) round ... 678 , - 2 )); var_dump ( round ( 678 , - 3 )); ?> 上の例の出力は以下となります。 float(3) float(4) float(4 ... , - 2 )); var_dump ( round ( $number , - 3 )); ?> 上の例の出力は以下となります。 float(135.79) float(135.7 ... dump ( round ( 8.5 , 0 , PHP_ROUND_HALF_ODD )); ?> 上の例の出力は以下となります。 Rounding modes with 9.5 f ... mp ( round (- 1.55 , 1 , PHP_ROUND_HALF_ODD )); ?> 上の例の出力は以下となります。 Using PHP_ROUND_HALF_UP w ...
https://man.plustar.jp/php/function.round.html - [similar]