検索

phrase: max: clip:
target: order:
Results of 791 - 800 of about 2443 for Array (0.309 sec.)
利用可能なDSNについての情報を返す 2219
« odbc_cursor odbc_do » PHP Manual ODBC 関数 利用可能なDSNについての情報を返す odbc_data_source ... _data_source ( resource $odbc , int $fetch_type ): array | false この関数は、有効な DSN(複数回のコールの後 ... ?> 上の例の出力は、 たとえば以下のようになります。 Array ( [server] => dsn [description] => ODBC Driver 17 ... for SQL Server ) Array ( [server] => other_dsn [description] => Microsoft ... etch , type , data , 関数 , description , server , Array , コール ...
https://man.plustar.jp/php/function.odbc-data-source.html - [similar]
ソースのプロパティを設定する 2219
« openal_source_rewind openal_source_stop » PHP Manual OpenAL 関数 ソースのプロパティを設定する ... at)、 AL_REFERENCE_DISTANCE (float)、 AL_POSITION (array(float,float,float))、 AL_VELOCITY (array(float,flo ... at,float))、 AL_DIRECTION (array(float,float,float)) のいずれか。 setting 指定した ... 関連キーワード: float , ソース , 設定 , property , array , int , リソース , 代入 , create , setting ...
https://man.plustar.jp/php/function.openal-source-set.html - [similar]
行を連想配列として取得する 2219
« pg_fetch_array pg_fetch_object » PHP Manual PostgreSQL 関数 行を連想配列として取得する pg_fetc ... ssoc ( PgSql\Result $result , ? int $row = null ): array | false pg_fetch_assoc() は、取得した行(レコード) ... の第 3 パラメータに PGSQL_ASSOC を指定して pg_fetch_array() をコールするのと同じです。連想配列のみを返します ... etch_row() - 数値添字の配列として行を得る pg_fetch_array() - 行を配列として取得する pg_fetch_object() - 行を ... fetch , 取得 , assoc , row , 行 , result , 配列 , array , PgSql , 関数 ...
https://man.plustar.jp/php/function.pg-fetch-assoc.html - [similar]
デフォルトのストリームコンテキストを取得する 2219
« stream_context_create stream_context_get_options » PHP Manual ストリーム 関数 デフォルトのスト ... キストを取得する 説明 stream_context_get_default ( ? array $options = null ): resource ( fopen() 、 file_get ... context_get_default() の使用 <?php $default_opts = array( 'http' =>array( 'method' => "GET" , 'header' => " ... => "tcp://10.54.1.39:8000" ) ); $alternate_opts = array( 'http' =>array( 'method' => "POST" , 'header' => ...
https://man.plustar.jp/php/function.stream-context-get-default.html - [similar]
ヘッダーあるいはメタデータをストリームまたはファイルポインタから取得する 2219
« stream_get_line stream_get_transports » PHP Manual ストリーム 関数 ヘッダーあるいはメタデータを ... する 説明 stream_get_meta_data ( resource $stream ): array 既存の stream に関する情報を返します。 パラメータ ... トリームに関連付けられた URI / ファイル名。 crypto (array) - このストリームに関連付けられた TLS 接続のメタデ ... ?> 上の例の出力は、 たとえば以下のようになります。 array(10) { 'timed_out' => bool(false) 'blocked' => bool ... (true) 'eof' => bool(false) 'wrapper_data' => array(13) { [0] => string(15) "HTTP/1.1 200 OK" [1] => s ...
https://man.plustar.jp/php/function.stream-get-meta-data.html - [similar]
Stochastic Relative Strength Index 2219
« trader_stochf trader_sub » PHP Manual Trader 関数 Stochastic Relative Strength Index trader_st ... tic Relative Strength Index 説明 trader_stochrsi ( array $real , int $timePeriod = ? , int $fastK_Period = ... , int $fastD_Period = ? , int $fastD_MAType = ? ): array パラメータ real 実数値の配列。 timePeriod Number o ... ies of constants should be used. 戻り値 Returns an array with calculated data or false on failure. 関連キー ...
https://man.plustar.jp/php/function.trader-stochrsi.html - [similar]
入力ロケールの変化系を取得する 2219
« Locale::filterMatches Locale::getDefault » PHP Manual Locale 入力ロケールの変化系を取得する Lo ... tatic Locale::getAllVariants ( string $locale ): ? array 手続き型 locale_get_all_variants ( string $locale ... ): ? array 入力ロケールの変化系を取得します。 パラメータ loca ... export ( $arr ); ?> 上の例の出力は以下となります。 array ( 0 => 'NEDIS', 1 => 'ROJAZ', 2 => '1901', ) 参考 ... , 入力 , locale , 変化 , Locale , variants , all , array , getAllVariants , string ...
https://man.plustar.jp/php/locale.getallvariants.html - [similar]
Wrap a PHP callable in a LuaSandboxFunction 2219
« LuaSandbox::unpauseUsageTimer LuaSandboxFunction » PHP Manual LuaSandbox Wrap a PHP callable i ... ymous function. The function must return either an array of values (which may be empty), or null which is e ... quivalent to returning the empty array. Exceptions will be raised as errors in Lua, howev ... LuaSandbox , a , in , function , wrapPhpFunction , array , return ...
https://man.plustar.jp/php/luasandbox.wrapphpfunction.html - [similar]
新機能 2219
« 下位互換性のない変更点 PHP 7.0.x で推奨されなくなる機能 » PHP Manual PHP 5.6.x から PHP 7.0.x ... モード function sumOfInts ( int ... $ints ) { return array_sum ( $ints ); } var_dump ( sumOfInts ( 2 , '3' , ... 引数の型宣言で使えるものと同じです。 <?php function arraysSum (array ... $arrays ): array { return array_map ... (function(array $array ): int { return array_sum ( $array ); }, $a ... rrays ); } print_r ( arraysSum ([ 1 , 2 , 3 ], [ 4 , 5 , 6 ], [ 7 , 8 , 9 ])) ...
https://man.plustar.jp/php/migration70.new-features.html - [similar]
Sets a type map to use for BSON unserialization 2219
« MongoDB\Driver\CursorInterface::isDead MongoDB\Driver\CursorInterface::toArray » PHP Manual Mo ... ublic MongoDB\Driver\CursorInterface::setTypeMap ( array $typemap ): void Sets the type map configuration t ... BSON results into PHP values. パラメータ typeMap ( array ) 型マップの設定 。 戻り値 値を返しません。 エラー ... lization , Driver , CursorInterface , setTypeMap , array ...
https://man.plustar.jp/php/mongodb-driver-cursorinterface.settypemap.html - [similar]