検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 96 for red (0.011 sec.)
指定した色+アルファ値のインデックスを取得する 6277
« imagecolorexact imagecolormatch » PHP Manual GD および Image 関数 指定した色+アルファ値のインデ ... 説明 imagecolorexactalpha ( GdImage $image , int $red , int $green , int $blue , int $alpha ): int イメー ... のような画像作成関数が返す GdImage オブジェクト。 red 赤コンポーネントの値。 green 緑コンポーネントの値。 ...
https://man.plustar.jp/php/function.imagecolorexactalpha.html - [similar]
複数の行セットを返す文ハンドラで次の行セットに移動する 6277
« PDOStatement::getIterator PDOStatement::rowCount » PHP Manual PDOStatement 複数の行セットを返す ... 上の例の出力は以下となります。 Result set 1: apple red banana yellow Result set 2: orange orange 150 bana ... na yellow 175 Result set 3: lime green apple red banana yellow 参考 PDOStatement::columnCount() - 結 ...
https://man.plustar.jp/php/pdostatement.nextrowset.html - [similar]
追加された添字の確認も含め、コールバック関数を用いて 配列の共通項を確認する 6172
« array_intersect_key array_intersect_ukey » PHP Manual 配列 関数 追加された添字の確認も含め、コ ... "a" => "green" , "b" => "brown" , "c" => "blue" , "red" ); $array2 = array( "a" => "GREEN" , "B" => "brow ... n" , "yellow" , "red" ); print_r ( array_intersect_uassoc ( $array1 , $ ...
https://man.plustar.jp/php/function.array-intersect-uassoc.html - [similar]
データの比較にコールバック関数を用い、 追加された添字の確認も含めて配列の共通項... 6172
« array_udiff array_uintersect_uassoc » PHP Manual 配列 関数 データの比較にコールバック関数を用い ... "a" => "green" , "b" => "brown" , "c" => "blue" , "red" ); $array2 = array( "a" => "GREEN" , "B" => "brow ... n" , "yellow" , "red" ); print_r ( array_uintersect_assoc ( $array1 , $ ...
https://man.plustar.jp/php/function.array-uintersect-assoc.html - [similar]
データと添字の比較に個別のコールバック関数を用い、 追加された添字の確認も含めて... 6172
« array_uintersect_assoc array_uintersect » PHP Manual 配列 関数 データと添字の比較に個別のコール ... "a" => "green" , "b" => "brown" , "c" => "blue" , "red" ); $array2 = array( "a" => "GREEN" , "B" => "brow ... n" , "yellow" , "red" ); print_r ( array_uintersect_uassoc ( $array1 , ...
https://man.plustar.jp/php/function.array-uintersect-uassoc.html - [similar]
値をパラメータにバインドする 6172
« PDOStatement::bindParam PDOStatement::closeCursor » PHP Manual PDOStatement 値をパラメータにバ ... ートメントを実行する */ $calories = 150 ; $colour = 'red' ; $sth = $dbh -> prepare ( 'SELECT name, colour, ... ートメントを実行する */ $calories = 150 ; $colour = 'red' ; $sth = $dbh -> prepare ( 'SELECT name, colour, ...
https://man.plustar.jp/php/pdostatement.bindvalue.html - [similar]
HTTP リクエストに対するレスポンス内で サーバーによって送出された全てのヘッダを取... 6080
« base64_encode get_meta_tags » PHP Manual URL 関数 HTTP リクエストに対するレスポンス内で サーバ ... 12:28:13 GMT [2] => Server: Apache/1.3.27 (Unix) (Red-Hat/Linux) [3] => Last-Modified: Wed, 08 Jan 2003 ... 004 12:28:14 GMT [Server] => Apache/1.3.27 (Unix) (Red-Hat/Linux) [Last-Modified] => Wed, 08 Jan 2003 23: ...
https://man.plustar.jp/php/function.get-headers.html - [similar]
楕円弧を描画し、塗りつぶす 6080
« imagefill imagefilledellipse » PHP Manual GD および Image 関数 楕円弧を描画し、塗りつぶす imag ... agecolorallocate ( $image , 0x00 , 0x00 , 0x50 ); $red = imagecolorallocate ( $image , 0xFF , 0x00 , 0x00 ... ); $darkred = imagecolorallocate ( $image , 0x90 , 0x00 , 0x00 ... rc ( $image , 50 , $i , 100 , 50 , 75 , 360 , $darkred , IMG_ARC_PIE ); } imagefilledarc ( $image , 50 , ... ledarc ( $image , 50 , 50 , 100 , 50 , 75 , 360 , $red , IMG_ARC_PIE ); // 画像を出力します header ( 'Con ...
https://man.plustar.jp/php/function.imagefilledarc.html - [similar]
配列 6080
« 数値形式の文字列 Iterable » PHP Manual 型 配列 配列 PHP の配列は、実際には順番付けられたマップ ... descriptions [ E_ERROR ] = "A fatal error has occurred" ; $error_descriptions [ E_WARNING ] = "PHP issued ... error_descriptions [ 1 ] = "A fatal error has occurred" ; $error_descriptions [ 2 ] = "PHP issued a warni ... 介します。 <?php // これは、 $a = array( 'color' => 'red' , 'taste' => 'sweet' , 'shape' => 'round' , 'name ... 全にこれと同じです。 $a = array(); $a [ 'color' ] = 'red' ; $a [ 'taste' ] = 'sweet' ; $a [ 'shape' ] = 'ro ...
https://man.plustar.jp/php/language.types.array.html - [similar]
キーを基準にし、コールバック関数を用いて配列の差を計算する 5988
« array_diff_uassoc array_diff » PHP Manual 配列 関数 キーを基準にし、コールバック関数を用いて配 ... lse return - 1 ; } $array1 = array( 'blue' => 1 , 'red' => 2 , 'green' => 3 , 'purple' => 4 ); $array2 = ... )); ?> 上の例の出力は以下となります。 array(2) { ["red"]=> int(2) ["purple"]=> int(4) } 注意 注意 : この関 ...
https://man.plustar.jp/php/function.array-diff-ukey.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT