検索

phrase: max: clip:
target: order:
Results of 351 - 360 of about 2375 for New (0.063 sec.)
シンボリックリンクを作る 2491
« eio_statvfs eio_sync_file_range » PHP Manual Eio 関数 シンボリックリンクを作る eio_symlink (PE ... ンクを作る 説明 eio_symlink ( string $path , string $new_path , int $pri = EIO_PRI_DEFAULT , callable $call ... rce eio_symlink() は、 path へのシンボリックリンク new_path を作ります。 パラメータ path リンク元のパス。 ... new_path リンク先のパス。 pri リクエストの優先順位。 E ... h , リクエスト , callback , 関数 , data , string , new , リソース ...
https://man.plustar.jp/php/function.eio-symlink.html - [similar]
CSR の subject を返す 2491
« openssl_csr_get_public_key openssl_csr_new » PHP Manual OpenSSL 関数 CSR の subject を返す ope ... "wez@example.com" , ); $private_key = openssl_pkey_new (array( "private_key_bits" => 2048 , "private_key_ ... => 'sha512WithRSAEncryption' ); $csr = openssl_csr_new ( $subject , $privkey , $configargs ); print_r ( o ... mailAddress] => wez@example.com ) 参考 openssl_csr_new() - CSR を作成する openssl_csr_get_public_key() - ...
https://man.plustar.jp/php/function.openssl-csr-get-subject.html - [similar]
Returns a short, readable, parsable string representation of a variable 2491
« var_representation 関数 その他のサービス » PHP Manual var_representation 関数 Returns a short, ... h: 123\r\n" 例3 Exporting stdClass <?php $person = new stdClass ; $person -> name = 'ElePHPant ElePHPants ... rting classes <?php class A { public $var ; } $a = new A ; $a -> var = 5 ; echo var_representation ( $a ) ... static function __set_state ( $an_array ) { $obj = new A ; $obj -> var1 = $an_array [ 'var1' ]; $obj -> v ... ar2 = $an_array [ 'var2' ]; return $obj ; } } $a = new A ; $a -> var1 = 5 ; $a -> var2 = 'foo' ; eval( '$ ...
https://man.plustar.jp/php/function.var-representation.html - [similar]
2 つのファイルのバイナリ diff を、Rabin の polynomial fingerprinting アルゴリズ... 2491
« xdiff_file_patch xdiff_string_bdiff_size » PHP Manual xdiff 関数 2 つのファイルのバイナリ diff ... 説明 xdiff_file_rabdiff ( string $old_file , string $new_file , string $dest ): bool ふたつのファイルのバイ ... d_file 最初のファイルへのパス。"旧" ファイルです。 new_file 2 番目のファイルへのパス。"新" ファイルです。 ... します。 <?php $old_version = 'my_script_1.0.tgz' ; $new_version = 'my_script_1.1.tgz' ; xdiff_file_rabdiff ... ( $old_version , $new_version , 'my_script.bdiff' ); ?> 注意 注意 : 両方 ...
https://man.plustar.jp/php/function.xdiff-file-rabdiff.html - [similar]
画像に関数を適用する 2491
« Imagick::frameImage Imagick::fxImage » PHP Manual Imagick 画像に関数を適用する Imagick::functi ... す。 例 例1 シヌソイドの勾配の作成 <?php $imagick = new Imagick (); $imagick -> newPseudoImage ( 200 , 200 ... (4x^2 - 4x + 1) からの勾配の作成 <?php $imagick = new Imagick (); $imagick -> newPseudoImage ( 200 , 200 ... の勾配で変調した、複雑な勾配の作成 <?php $imagick1 = new Imagick (); $imagick1 -> newPseudoImage ( 200 , 20 ... k :: FUNCTION_SINUSOID , $arguments ); $imagick2 = new Imagick (); $imagick2 -> newPseudoImage ( 200 , 20 ...
https://man.plustar.jp/php/imagick.functionimage.html - [similar]
ベジエ曲線を描画する 2491
« ImagickDraw::arc ImagickDraw::circle » PHP Manual ImagickDraw ベジエ曲線を描画する ImagickDraw ... eColor , $fillColor , $backgroundColor ) { $draw = new \ ImagickDraw (); $strokeColor = new \ ImagickPixe ... l ( $strokeColor ); $fillColor = new \ ImagickPixel ( $fillColor ); $draw -> setStrokeO ... the draw commands can be rendered into $imagick = new \ Imagick (); $imagick -> newImage ( 500 , 500 , $ ...
https://man.plustar.jp/php/imagickdraw.bezier.html - [similar]
ImagickPixel のコンストラクタ 2491
« ImagickPixel::clear ImagickPixel::destroy » PHP Manual ImagickPixel ImagickPixel のコンストラク ... the same, with an explicit alpha value ); $draw = new \ ImagickDraw (); $count = 0 ; $black = new \ Imag ... ach ( $exampleColors as $exampleColor ) { $color = new \ ImagickPixel ( $exampleColor ); $draw -> setstro ... $offsetX , 40 + $offsetY ); $count ++; } $image = new \ Imagick (); $image -> newImage ( 350 , 350 , "bl ...
https://man.plustar.jp/php/imagickpixel.construct.html - [similar]
Description 2491
« ImagickPixel::setColorValue ImagickPixel::setHSL » PHP Manual ImagickPixel Description Imagick ... <?php function setColorValueQuantum () { $image = new \ Imagick (); $quantumRange = $image -> getQuantum ... Range (); $draw = new \ ImagickDraw (); $color = new \ ImagickPixel ( 'b ... -> rectangle ( 200 , 200 , 300 , 300 ); $image -> newImage ( 500 , 500 , "SteelBlue2" ); $image -> setIm ...
https://man.plustar.jp/php/imagickpixel.setcolorvaluequantum.html - [similar]
トレイト 2491
« オブジェクト インターフェイス 無名クラス » PHP Manual クラスとオブジェクト トレイト トレイト P ... MyHelloWorld extends Base { use SayWorld ; } $o = new MyHelloWorld (); $o -> sayHello (); ?> 上の例の出力 ... on sayHello () { echo 'Hello Universe!' ; } } $o = new TheWorldIsNotEnough (); $o -> sayHello (); ?> 上の ... nction sayExclamationMark () { echo '!' ; } } $o = new MyHelloWorld (); $o -> sayHello (); $o -> sayWorld ... d ; } class MyHelloWorld { use HelloWorld ; } $o = new MyHelloWorld (); $o -> sayHello (); $o -> sayWorld ...
https://man.plustar.jp/php/language.oop5.traits.html - [similar]
フォーマッタが使用するパターンを設定する 2491
« MessageFormatter::parse IntlCalendar » PHP Manual MessageFormatter フォーマッタが使用するパター ... umber} trees hosting {1, number} monkeys" ); echo "New pattern: '" . msgfmt_get_pattern ( $fmt ) . "'\n" ... . "\n" ; ?> 例2 オブジェクト指向の例 <?php $fmt = new MessageFormatter ( "en_US" , "{0, number} monkeys ... umber} trees hosting {1, number} monkeys" ); echo "New pattern: '" . $fmt -> getPattern () . "'\n" ; echo ... trees' Formatting result: 123 monkeys on 456 trees New pattern: '{0,number} trees hosting {1,number} monk ...
https://man.plustar.jp/php/messageformatter.setpattern.html - [similar]