検索

phrase: max: clip:
target: order:
Results of 321 - 330 of about 817 for return (0.047 sec.)
パレット形式の画像を true color に変換する 3152
« imagepalettecopy imagepng » PHP Manual GD および Image 関数 パレット形式の画像を true color に ... color (& $src ) { if( imageistruecolor ( $src )) { return( true ); } $dst = imagecreatetruecolor ( imagesx ( ... sy ( $src )); imagedestroy ( $src ); $src = $dst ; return( true ); } } // ヘルパークロージャ $typeof = funct ...
https://man.plustar.jp/php/function.imagepalettetotruecolor.html - [similar]
Oracle プレースホルダに PHP 変数をバインドする 3152
« oci_bind_array_by_name oci_cancel » PHP Manual OCI8 関数 Oracle プレースホルダに PHP 変数をバイ ... ; $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN_NULLS ); foreach ( $row as $item ) { print $item . ... ; $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN_NULLS ); $rid = $row [ 'ROWID' ]; $name = $row [ ' ... ERT INTO mytab (id, name) VALUES(:id_bv, :name_bv) RETURNING ROWID INTO :rid" ; $ins_stid = oci_parse ( $con ... ( $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN_NULLS )) { var_dump ( $row ); } oci_free_statement ...
https://man.plustar.jp/php/function.oci-bind-by-name.html - [similar]
正規表現検索を行い、コールバック関数を使用して置換を行う 3152
« preg_replace_callback_array preg_replace » PHP Manual PCRE 関数 正規表現検索を行い、コールバッ ... _callback ( '|<p>\s*\w|' , function ( $matches ) { return strtolower ( $matches [ 0 ]); }, $line ); echo $li ... / にあてはまる部分を表します。それ以降も同様です。 return $matches [ 1 ].( $matches [ 2 ]+ 1 ); } echo preg_ ... "margin-left: 10px">' . $input [ 1 ]. '</div>' ; } return preg_replace_callback ( $regex , 'parseTagsRecursi ...
https://man.plustar.jp/php/function.preg-replace-callback.html - [similar]
ユーザー定義のエラーハンドラ関数を設定する 3152
« restore_exception_handler set_exception_handler » PHP Manual エラー処理関数 ユーザー定義のエラ ... のため、 // 標準の PHP エラーハンドラに渡されます。 return; } // $errstr はエスケープする必要があるかもしれま ... ak; } /* PHP の内部エラーハンドラを実行しません */ return true ; } // エラー処理のテスト用関数 function scal ... tor, array of values expected" , E_USER_WARNING ); return null ; } $temp = array(); foreach( $vect as $pos = ... 0 ; } $temp [ $pos ] = log ( $scale ) * $value ; } return $temp ; } // 定義したエラーハンドラを設定する $old ...
https://man.plustar.jp/php/function.set-error-handler.html - [similar]
アーカイブが壊れている (未完成である) かどうかを調べる 3152
« RarArchive::getEntry RarArchive::isSolid » PHP Manual RarArchive アーカイブが壊れている (未完成 ... 例1 オブジェクト指向型 <?php function retnull () { return null ; } $file = dirname ( __FILE__ ) . "/multi_br ... ool(true) 例2 手続き型 <?php function retnull () { return null ; } $file = dirname ( __FILE__ ) . "/multi_br ...
https://man.plustar.jp/php/rararchive.isbroken.html - [similar]
引数の型を取得する 3152
« ReflectionParameter::getPosition ReflectionParameter::hasType » PHP Manual ReflectionParameter ... onParameter -> getType (); if (! $reflectionType ) return []; return $reflectionType instanceof ReflectionUn ...
https://man.plustar.jp/php/reflectionparameter.gettype.html - [similar]
SOAP リクエストによって処理される単一もしくはいくつかの関数を追加する 3152
« SoapServer SoapServer::addSoapHeader » PHP Manual SoapServer SOAP リクエストによって処理される ... の例 <?php function echoString ( $inputString ) { return $inputString ; } $server -> addFunction ( "echoStr ... echoTwoStrings ( $inputString1 , $inputString2 ) { return array( "outputString1" => $inputString1 , "outputS ...
https://man.plustar.jp/php/soapserver.addfunction.html - [similar]
発行コールバック 3152
« パースコールバック Yaml 関数 » PHP Manual コールバック 発行コールバック 発行コールバック 発行コ ... er) * * @param object $obj 発行するオブジェクト * @return array 発行するタグおよび代理データ */ public stati ... c function yamlEmit ( EmitExample $obj ) { return array( 'tag' => '!example/emit' , 'data' => $obj - ...
https://man.plustar.jp/php/yaml.callbacks.emit.html - [similar]
The EvTimer class 3119
« EvStat::stat EvTimer::again » PHP Manual Ev The EvTimer class The EvTimer class (PECL ev >= 0. ... t seconds later, until stopped manually. remaining Returns the remaining time until a timer fires. If the ti ... r value of 5.0 and repeat value of 7.0 , remaining returns 5.0 . When the timer is started and one second pa ... sses, remaining will return 4.0 . When the timer expires and is restarted, it ... will return roughly 7.0 (likely slightly less as callback invo ...
https://man.plustar.jp/php/class.evtimer.html - [similar]
The MongoDB\Driver\Command class 3119
« MongoDB\Driver\Manager::startSession MongoDB\Driver\Command::__construct » PHP Manual MongoDB\ ... ags" ] = (int) $flags ; } function getCommand () { return new MongoDB \ Driver \ Command ( $this -> cmd ); } ... function getCollectionName () { return $this -> cmd [ "create" ]; } } $manager = new Mong ...
https://man.plustar.jp/php/class.mongodb-driver-command.html - [similar]