検索

phrase: max: clip:
target: order:
Results of 201 - 210 of about 292 for Y (0.050 sec.)
GMT/UTC の日付/時刻を書式化する 4205
« gettimeofday gmmktime » PHP Manual 日付・時刻 関数 GMT/UTC の日付/時刻を書式化する gmdate (PHP ... 1997 22:00:00" となります。 <?php echo date ( "M d Y H:i:s" , mktime ( 0 , 0 , 0 , 1 , 1 , 1998 )); ech ... o gmdate ( "M d Y H:i:s" , mktime ( 0 , 0 , 0 , 1 , 1 , 1998 )); ?> ...
https://man.plustar.jp/php/function.gmdate.html - [similar]
カラーインデックスからカラーを取得する 4205
« imagecolorset imagecolorstotal » PHP Manual GD および Image 関数 カラーインデックスからカラーを ... olorsforindex ( GdImage $image , int $color ): array 指定したインデックスに対する色を取得します。 パラメ ... n.png' ); // 色を取得します $start_x = 40 ; $start_y = 50 ; $color_index = imagecolorat ( $im , $start_ ... x , $start_y ); // 可読形式にします $color_tran = imagecolorsfo ... 上の例の出力は、 たとえば以下のようになります。 Array ( [red] => 226 [green] => 222 [blue] => 252 [alpha ...
https://man.plustar.jp/php/function.imagecolorsforindex.html - [similar]
矩形を描画する 4205
« imagepolygon imageresolution » PHP Manual GD および Image 関数 矩形を描画する imagerectangle ( ... 明 imagerectangle ( GdImage $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color ): bool imagerec ... 関数が返す GdImage オブジェクト。 x1 左上の x 座標。 y1 左上の y 座標。 0, 0 が画像の左上隅を表します。 x ... 2 右下の x 座標。 y2 右下の y 座標。 color imagecolorallocate() で作成 ... // 出力してメモリから解放します header ( 'Content-Type: image/jpeg' ); imagejpeg ( $canvas ); imagedest ...
https://man.plustar.jp/php/function.imagerectangle.html - [similar]
ファイルを実行するためのリンクを追加する 4205
« ps_add_bookmark ps_add_locallink » PHP Manual PS 関数 ファイルを実行するためのリンクを追加する ... unchlink ( resource $psdoc , float $llx , float $lly , float $urx , float $ury , string $filename ): bo ... のリンク元は矩形で表され、 その左下の座標は (llx, lly)、そして右上の座標が (urx, ury) となります。 この矩 ... pt ファイルのリソース ID。 llx 左下角の x 座標。 lly 左下角の y 座標。 urx 右上角の x 座標。 ury 右上角 ...y 座標。 filename リンクがクリックされた際に開始する ...
https://man.plustar.jp/php/function.ps-add-launchlink.html - [similar]
Web 上の場所へのリンクを追加する 4205
« ps_add_pdflink ps_arc » PHP Manual PS 関数 Web 上の場所へのリンクを追加する ps_add_weblink (PE ... _weblink ( resource $psdoc , float $llx , float $lly , float $urx , float $ury , string $url ): bool 指 ... リンク元はは矩形で表され、その左下の座標は ( llx , lly )、 そして右上の座標が ( urx , ury ) となります。 ... pt ファイルのリソース ID。 llx 左下角の x 座標。 lly 左下角の y 座標。 urx 右上角の x 座標。 ury 右上角 ...y 座標。 url リンクがクリックされた際に開かれるハイパ ...
https://man.plustar.jp/php/function.ps-add-weblink.html - [similar]
画像にテキストによる注記を加える 4205
« Imagick::animateImages Imagick::appendImages » PHP Manual Imagick 画像にテキストによる注記を加 ... e ( ImagickDraw $draw_settings , float $x , float $y , float $angle , string $text ): bool テキストによ ... テキストの左端の水平オフセットをあらわすピクセル数。 y テキストのベースラインの垂直オフセットをあらわすピ ... ew ImagickDraw (); $pixel = new ImagickPixel ( 'gray' ); /* 画像を作成します */ $image -> newImage ( 80 ... , 45 , 0 , 'The quick brown fox jumps over the lazy dog' ); /* 画像形式の設定 */ $image -> setImageFor ...
https://man.plustar.jp/php/imagick.annotateimage.html - [similar]
SOAP リクエストを実行する 4205
« SoapClient::__construct SoapClient::__getCookies » PHP Manual SoapClient SOAP リクエストを実行 ... ation , string $action , int $version , bool $oneWay = false ): ? string HTTP 上で SOAP リクエストを実行 ... ction SOAP アクション version SOAP バージョン oneWay one_way に 1 を設定すると、このメソッドは何も返しま ... OAP レスポンス 変更履歴 バージョン 説明 8.0.0 oneWay の型は bool になりました。 これより前のバージョンで ... ent::__doRequest() の例 <?php function Add ( $x , $y ) { return $x + $y ; } class LocalSoapClient exten ...
https://man.plustar.jp/php/soapclient.dorequest.html - [similar]
Sorts the map in-place by key 4167
« Ds\Map::keys Ds\Map::ksorted » PHP Manual Map Sorts the map in-place by key Ds\Map::ksort (PEC ... >= 1.0.0) Ds\Map::ksort — Sorts the map in-place by key 説明 public Ds\Map::ksort ( callable $comparat ... or = ? ): void Sorts the map in-place by key, using an optional comparator function. パラメ ... ります。 Ds\Map Object ( [0] => Ds\Pair Object ( [key] => a [value] => 1 ) [1] => Ds\Pair Object ( [key] ... => b [value] => 2 ) [2] => Ds\Pair Object ( [key] => c [value] => 3 ) ) 例2 Ds\Map::ksort() example ...
https://man.plustar.jp/php/ds-map.ksort.html - [similar]
Returns a copy, sorted by key 4167
« Ds\Map::ksort Ds\Map::last » PHP Manual Map Returns a copy, sorted by key Ds\Map::ksorted (No ... version information available, might only be in Git) Ds\Map::ksorted — Returns a copy, sorte ... d by key 説明 public Ds\Map::ksorted ( callable $compar ... ator = ? ): Ds\Map Returns a copy sorted by key, using an optional comparator functi ... compare such values as equal. 戻り値 Returns a copy of the map, sorted by key. 例 例1 Ds\Map::ksorted( ...
https://man.plustar.jp/php/ds-map.ksorted.html - [similar]
任意精度数値のべき乗の、指定した数値による剰余 4167
« bcpow bcscale » PHP Manual BC Math 関数 任意精度数値のべき乗の、指定した数値による剰余 bcpowmo ... きな値の計算が可能です。 <?php $a = bcpowmod ( $x , $y , $mod ); $b = bcmod ( bcpow ( $x , $y ), $mod ); ...
https://man.plustar.jp/php/function.bcpowmod.html - [similar]