検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 96 for red (0.001 sec.)
アトリビュートを取得する 11175
« ReflectionClass::export ReflectionClass::getConstant » PHP Manual ReflectionClass アトリビュー ... hp #[Attribute] class Fruit { } #[Attribute] class Red { } #[Fruit] #[Red] class Apple { } $class = new R ... の出力は以下となります。 Array ( [0] => Fruit [1] => Red ) 例2 クラス名で結果をフィルタする <?php #[Attribu ... te] class Fruit { } #[Attribute] class Red { } #[Fruit] #[Red] class Apple { } $class = new R ... } #[Attribute] class Fruit { } #[Attribute] class Red implements Colour { } #[Fruit] #[Red] class Apple ...
https://man.plustar.jp/php/reflectionclass.getattributes.html - [similar]
画像で使用する色を透過度を指定して作成する 10795
« imagecolorallocate imagecolorat » PHP Manual GD および Image 関数 画像で使用する色を透過度を指 ... 説明 imagecolorallocatealpha ( GdImage $image , int $red , int $green , int $blue , int $alpha ): int | fal ... のような画像作成関数が返す GdImage オブジェクト。 red 赤コンポーネントの値。 green 緑コンポーネントの値。 ... 状態。 127 は完全に透明な状態を表します。 パラメータ red 、 green および blue には、 0 から 255 までの整数値 ... 1 , $border ); $yellow_x = 100 ; $yellow_y = 75 ; $red_x = 120 ; $red_y = 165 ; $blue_x = 187 ; $blue_y = ...
https://man.plustar.jp/php/function.imagecolorallocatealpha.html - [similar]
Color Representation 10506
« UI\Draw\Matrix::translate UI\Draw\Color::__construct » PHP Manual UI Color Representation Colo ... 概要 class UI\Draw\Color { /* Constants */ const int Red ; const int Green ; const int Blue ; const int Alp ... alue ): void } プロパティ r Provides access to the red channel g Provides access to the green channel b P ... s to the alpha channel 定義済み定数 UI\Draw\Color::Red Identifies the red channel UI\Draw\Color::Green Id ... construct , Identifies , Provides , Manipulation , red , float , Constructor ...
https://man.plustar.jp/php/class.ui-draw-color.html - [similar]
線描画用のスタイルを設定する 10506
« imagesetpixel imagesetthickness » PHP Manual GD および Image 関数 線描画用のスタイルを設定する ... w = imagecolorallocate ( $im , 255 , 255 , 255 ); $red = imagecolorallocate ( $im , 255 , 0 , 0 ); /* 5 ピ ... ピクセルの白線の破線を描画します */ $style = array( $red , $red , $red , $red , $red , $w , $w , $w , $w , ... $w , $w , $w , $w , $w , $w , $w , $w , $w , $w , $red ); imagesetstyle ( $im , $style ); $brush = imagec ...
https://man.plustar.jp/php/function.imagesetstyle.html - [similar]
要素を逆順にした配列を返す 9836
« array_replace array_search » PHP Manual 配列 関数 要素を逆順にした配列を返す array_reverse (PH ... hp $input = array( "php" , 4.0 , array( "green" , "red" )); $reversed = array_reverse ( $input ); $preser ... => php [1] => 4 [2] => Array ( [0] => green [1] => red ) ) Array ( [0] => Array ( [0] => green [1] => red ... > php ) Array ( [2] => Array ( [0] => green [1] => red ) [1] => 4 [0] => php ) 参考 array_flip() - 配列の ... 関連キーワード: 配列 , 要素 , 逆順 , array , Array , red , キー , 保持 , preserve , 数値 ...
https://man.plustar.jp/php/function.array-reverse.html - [similar]
配列の一部を削除し、他の要素で置換する 9547
« array_slice array_sum » PHP Manual 配列 関数 配列の一部を削除し、他の要素で置換する array_spli ... 例 例1 array_splice() の例 <?php $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $ ... input , 2 ); var_dump ( $input ); $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $ ... , 1 , - 1 ); var_dump ( $input ); $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $ ... "orange" ); var_dump ( $input ); $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $ ...
https://man.plustar.jp/php/function.array-splice.html - [similar]
色を補間する 9258
« Imagick::solarizeImage Imagick::spliceImage » PHP Manual Imagick 色を補間する Imagick::sparseC ... mageBarycentric2 () { $points = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lim ... nderImageBilinear () { $points = [[ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lim ... derImageShepards () { $points = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lim ... nderImageVoronoi () { $points = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lim ...
https://man.plustar.jp/php/imagick.sparsecolorimage.html - [similar]
注記の枠線の色を設定する 8969
« ps_scale ps_set_border_dash » PHP Manual PS 関数 注記の枠線の色を設定する ps_set_border_color ... 説明 ps_set_border_color ( resource $psdoc , float $red , float $green , float $blue ): bool ps_add_weblin ... s_new() が返す、postscript ファイルのリソース ID。 red 枠線の色の red 要素。 green 枠線の色の green 要素。 ... ード: 設定 , 注記 , 色 , 枠 , float , 矩形 , 要素 , red , 関数 , pdf ...
https://man.plustar.jp/php/function.ps-set-border-color.html - [similar]
サブパターン 8286
« 内部オプション設定 繰り返し » PHP Manual PCRE 正規表現構文 サブパターン サブパターン サブパター ... attern) の番号が指定されます。 例えば、文字列 "the red king" に対し、パターン the ((red|white) (king|quee ... ッチングさせた場合、キャプチャされる部分文字列は、 "red king", "red", "king" であり、 それぞれ 1 番, 2 番, ... 、次のパターンをマッチングさせてみましょう。 the ((?:red|white) (king|queen)) キャプチャされる部分文字列は、 ... ターン , マッチ , 後方 , 参照 , 番号 , サブ , 部分 , red , queen , カッコ ...
https://man.plustar.jp/php/regexp.reference.subpatterns.html - [similar]
追加された添字の確認を含めて配列の差を計算する 8194
« array_count_values array_diff_key » PHP Manual 配列 関数 追加された添字の確認を含めて配列の差を ... の出力には含まれていません。 これとは異なり、 0 => "red" は出力の中にありますが、 これは、二番目の引数にお ... いて "red" が 1 というキーを有しているためです。 <?php $arra ... "a" => "green" , "b" => "brown" , "c" => "blue" , "red" ); $array2 = array( "a" => "green" , "yellow" , " ... となります。 Array ( [b] => brown [c] => blue [0] => red ) 例2 array_diff_assoc() の例 key => value の組から ...
https://man.plustar.jp/php/function.array-diff-assoc.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT