検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 389 for foreach (0.135 sec.)
配列をシャッフルする 4122
« rsort sizeof » PHP Manual 配列 関数 配列をシャッフルする shuffle (PHP 4, PHP 5, PHP 7, PHP 8) ... $numbers = range ( 1 , 20 ); shuffle ( $numbers ); foreach ( $numbers as $number ) { echo " $number " ; } ?> ...
https://man.plustar.jp/php/function.shuffle.html - [similar]
ストリーミングのためにハッシュを初期化する 4122
« sodium_crypto_generichash_final sodium_crypto_generichash_keygen » PHP Manual Sodium 関数 スト ... tate = sodium_crypto_generichash_init ( '' , 32 ); foreach ( $messages as $message ) { sodium_crypto_generich ...
https://man.plustar.jp/php/function.sodium-crypto-generichash-init.html - [similar]
URL エンコードされた文字列をデコードする 4122
« rawurlencode urlencode » PHP Manual URL 関数 URL エンコードされた文字列をデコードする urldecod ... の例 <?php $query = "my=apples&are=green+and+red" ; foreach ( explode ( '&' , $query ) as $chunk ) { $param = ...
https://man.plustar.jp/php/function.urldecode.html - [similar]
テキストへの署名 4122
« 例 GnuPG 関数 » PHP Manual 例 テキストへの署名 テキストへの署名 この例は、指定したテキストに署 ... terator = new gnupg_keylistiterator ( "example" ); foreach( $iterator as $fingerprint => $userid ){ echo $fin ...
https://man.plustar.jp/php/gnupg.examples-clearsign.html - [similar]
基本的な使用法 4122
« 例 Imagick » PHP Manual 例 基本的な使用法 基本的な使用法 Imagick は、PHP による画像の操作を、 ... $images = new Imagick ( glob ( 'images/*.JPG' )); foreach( $images as $image ) { // 0 を指定することで、thum ... ample.gif" ); /* 全フレームのサイズを変更します */ foreach ( $im as $frame ) { /* 50x50 のフレーム */ $frame ...
https://man.plustar.jp/php/imagick.examples-1.html - [similar]
画像のプロパティを返す 4122
« Imagick::getImageProfiles Imagick::getImageProperty » PHP Manual Imagick 画像のプロパティを返す ... "exif:*" ); /* EXIF のプロパティをループします */ foreach ( $exifArray as $name => $property ) { echo " { $n ...
https://man.plustar.jp/php/imagick.getimageproperties.html - [similar]
画像の遅延を設定する 4122
« Imagick::setImageCompressionQuality Imagick::setImageDepth » PHP Manual Imagick 画像の遅延を設 ... = $imagick -> coalesceImages (); $frameCount = 0 ; foreach ( $imagick as $frame ) { $imagick -> setImageDelay ...
https://man.plustar.jp/php/imagick.setimagedelay.html - [similar]
テキストによる注記を行う際に使用するフォントのポイント数を設定する 4122
« ImagickDraw::setFontFamily ImagickDraw::setFontStretch » PHP Manual ImagickDraw テキストによる ... Arial.ttf" ); $sizes = [ 24 , 36 , 48 , 60 , 72 ]; foreach ( $sizes as $size ) { $draw -> setFontSize ( $size ...
https://man.plustar.jp/php/imagickdraw.setfontsize.html - [similar]
テキストの配置時の gravity を設定する 4122
« ImagickDraw::setFontWeight ImagickDraw::setResolution » PHP Manual ImagickDraw テキストの配置時 ... ast' ); $draw -> setFont ( "../fonts/Arial.ttf" ); foreach ( $gravitySettings as $type => $description ) { $d ...
https://man.plustar.jp/php/imagickdraw.setgravity.html - [similar]
開かれたサブパスを描画する際に使用する端点の形状を指定する 4122
« ImagickDraw::setStrokeDashOffset ImagickDraw::setStrokeLineJoin » PHP Manual ImagickDraw 開かれ ... ND , \ Imagick :: LINECAP_SQUARE ,]; $offset = 0 ; foreach ( $lineTypes as $lineType ) { $draw -> setStrokeLi ...
https://man.plustar.jp/php/imagickdraw.setstrokelinecap.html - [similar]