検索

phrase: max: clip:
target: order:
Results of 331 - 340 of about 2443 for Array (0.353 sec.)
変数の文字列表現を出力または返す 2704
« var_dump ウェブサービス » PHP Manual 変数操作 関数 変数の文字列表現を出力または返す var_export ... わず、 配列をオブジェクトにキャストした形 ( (object) array( ... ) ) でエクスポートされるようになりました。 こ ... うになりました。 例 例1 var_export() の例 <?php $a = array ( 1 , 2 , array ( "a" , "b" , "c" )); var_export ( ... $a ); ?> 上の例の出力は以下となります。 array ( 0 => 1, 1 => 2, 2 => array ( 0 => 'a', 1 => 'b', ... $person ); 上の例の出力は以下となります。 (object) array( 'name' => 'ElePHPant ElePHPantsdotter', 'website' ...
https://man.plustar.jp/php/function.var-export.html - [similar]
Returns an array containing all results for this cursor 2704
« MongoDB\Driver\Cursor::setTypeMap MongoDB\Driver\Cursor::valid » PHP Manual MongoDB\Driver\Cur ... sor Returns an array containing all results for this cursor MongoDB\Dri ... ver\Cursor::toArray (mongodb >=1.0.0) MongoDB\Driver\Cursor::toArray... Returns an array containing all results for this cursor 説明 final ... public MongoDB\Driver\Cursor::toArray (): array Iterates the cursor and returns its resu ...
https://man.plustar.jp/php/mongodb-driver-cursor.toarray.html - [similar]
Gets the acl associated with a node synchronously 2704
« Zookeeper::get Zookeeper::getChildren » PHP Manual Zookeeper Gets the acl associated with a no ... ly 説明 public Zookeeper::getAcl ( string $path ): array パラメータ path The name of the node. Expressed as ... eparating ancestors of the node. 戻り値 Return acl array on success and false on failure. エラー / 例外 Thi ... zookeeper = new Zookeeper ( 'locahost:2181' ); $aclArray = array( array( 'perms' => Zookeeper :: PERM_ALL , ... h/to/newnode' ; $zookeeper -> setAcl ( $path , $aclArray ); $r = $zookeeper -> getAcl ( $path ); if ( $r ) ...
https://man.plustar.jp/php/zookeeper.getacl.html - [similar]
Returns the cascade activation steepnesses 2691
« fann_get_cascade_activation_steepnesses_count fann_get_cascade_candidate_change_fraction » PHP ... _cascade_activation_steepnesses ( resource $ann ): array The cascade activation steepnesses array is an arr ... which candidate neurons will be generated by this array. The default activation steepnesses are {0.25, 0.5 ... nn_set_cascade_activation_steepnesses() - Sets the array of cascade candidate activation steepnesses 関連キ ... activation , steepnesses , fann , Returns , the , array , candidate , count , description , 参考 ...
https://man.plustar.jp/php/function.fann-get-cascade-activation-steepnesses.html - [similar]
Vector Arithmetic Add 2691
« trader_ad trader_adosc » PHP Manual Trader 関数 Vector Arithmetic Add trader_add (PECL trader ... ader_add — Vector Arithmetic Add 説明 trader_add ( array $real0 , array $real1 ): array Calculates the vect ... 数値の配列。 real1 実数値の配列。 戻り値 Returns an array with calculated data or false on failure. 関連キー ... ワード: Arithmetic , Add , trader , array , 配列 , 実数 , パラメータ , data , calculated , R ...
https://man.plustar.jp/php/function.trader-add.html - [similar]
Aroon 2691
« trader_apo trader_aroonosc » PHP Manual Trader 関数 Aroon trader_aroon (PECL trader >= 0.2.0) ... trader_aroon — Aroon 説明 trader_aroon ( array $high , array $low , int $timePeriod = ? ): array ... d. Valid range from 2 to 100000. 戻り値 Returns an array with calculated data or false on failure. 関連キー ... ワード: Aroon , trader , array , aroon , high , low , timePeriod , 実数 , 配列 , ...
https://man.plustar.jp/php/function.trader-aroon.html - [similar]
Aroon Oscillator 2691
« trader_aroon trader_asin » PHP Manual Trader 関数 Aroon Oscillator trader_aroonosc (PECL trade ... aroonosc — Aroon Oscillator 説明 trader_aroonosc ( array $high , array $low , int $timePeriod = ? ): array ... d. Valid range from 2 to 100000. 戻り値 Returns an array with calculated data or false on failure. 関連キー ... ワード: Oscillator , Aroon , trader , array , aroonosc , high , low , timePeriod , 実数 , 配列 ...
https://man.plustar.jp/php/function.trader-aroonosc.html - [similar]
Beta 2691
« trader_bbands trader_bop » PHP Manual Trader 関数 Beta trader_beta (PECL trader >= 0.2.0) trad ... er_beta — Beta 説明 trader_beta ( array $real0 , array $real1 , int $timePeriod = ? ): arr ... d. Valid range from 2 to 100000. 戻り値 Returns an array with calculated data or false on failure. 関連キー ... ワード: Beta , trader , array , 配列 , timePeriod , 実数 , 関数 , int , Trader , ...
https://man.plustar.jp/php/function.trader-beta.html - [similar]
Vector Arithmetic Mult 2691
« trader_mom trader_natr » PHP Manual Trader 関数 Vector Arithmetic Mult trader_mult (PECL trade ... r_mult — Vector Arithmetic Mult 説明 trader_mult ( array $real0 , array $real1 ): array Calculates the vect ... 数値の配列。 real1 実数値の配列。 戻り値 Returns an array with calculated data or false on failure. 関連キー ... ワード: Arithmetic , Mult , trader , array , mult , 配列 , 実数 , パラメータ , data , calcula ...
https://man.plustar.jp/php/function.trader-mult.html - [similar]
複数のアイテムを取得する 2691
« Memcached::getDelayedByKey Memcached::getMultiByKey » PHP Manual Memcached 複数のアイテムを取得 ... アイテムを取得する 説明 public Memcached::getMulti ( array $keys , int $flags = ? ): mixed Memcached::getMult ... $m -> addServer ( 'localhost' , 11211 ); $items = array( 'key1' => 'value1' , 'key2' => 'value2' , 'key3' ... -> setMulti ( $items ); $result = $m -> getMulti (array( 'key1' , 'key3' , 'badkey' )); var_dump ( $result ... ?> 上の例の出力は、 たとえば以下のようになります。 array(2) { ["key1"]=> string(6) "value1" ["key3"]=> stri ...
https://man.plustar.jp/php/memcached.getmulti.html - [similar]