検索

phrase: max: clip:
target: order:
Results of 451 - 460 of about 1070 for Dump (1.517 sec.)
Reduces the sequence to a single value using a callback function 2916
« Ds\Sequence::push Ds\Sequence::remove » PHP Manual Sequence Reduces the sequence to a single v ... carry , $value ) { return $carry * $value ; }; var_dump ( $sequence -> reduce ( $callback , 5 )); // Itera ... $sequence = new \ Ds \ Vector ([ 1 , 2 , 3 ]); var_dump ( $sequence -> reduce (function( $carry , $value ) ...
https://man.plustar.jp/php/ds-sequence.reduce.html - [similar]
Reduces the set to a single value using a callback function 2916
« Ds\Set::merge Ds\Set::remove » PHP Manual Set Reduces the set to a single value using a callba ... carry , $value ) { return $carry * $value ; }; var_dump ( $set -> reduce ( $callback , 5 )); // Iterations ... e <?php $set = new \ Ds \ Set ([ 1 , 2 , 3 ]); var_dump ( $set -> reduce (function( $carry , $value ) { re ...
https://man.plustar.jp/php/ds-set.reduce.html - [similar]
Reduces the vector to a single value using a callback function 2916
« Ds\Vector::push Ds\Vector::remove » PHP Manual Vector Reduces the vector to a single value usi ... carry , $value ) { return $carry * $value ; }; var_dump ( $vector -> reduce ( $callback , 5 )); // Iterati ... p $vector = new \ Ds \ Vector ([ 1 , 2 , 3 ]); var_dump ( $vector -> reduce (function( $carry , $value ) { ...
https://man.plustar.jp/php/ds-vector.reduce.html - [similar]
未処理のリクエストがあるかどうかを調べる 2916
« eio_open eio_read » PHP Manual Eio 関数 未処理のリクエストがあるかどうかを調べる eio_poll (PEC ... の例 <?php function res_cb ( $data , $result ) { var_dump ( $data ); var_dump ( $result ); } eio_nop ( EIO_P ...
https://man.plustar.jp/php/function.eio-poll.html - [similar]
文字列を文字列により分割する 2916
« echo fprintf » PHP Manual String 関数 文字列を文字列により分割する explode (PHP 4, PHP 5, PHP ... o" ; $input2 = "hello,there" ; $input3 = ',' ; var_dump ( explode ( ',' , $input1 ) ); var_dump ( explode ... ( ',' , $input2 ) ); var_dump ( explode ( ',' , $input3 ) ); ?> 上の例の出力は以 ...
https://man.plustar.jp/php/function.explode.html - [similar]
指定したオブジェクトのプロパティを取得する 2916
« get_mangled_object_vars get_parent_class » PHP Manual クラス/オブジェクト関数 指定したオブジェ ... ate $d ; static $e ; public function test () { var_dump ( get_object_vars ( $this )); } } $test = new foo ... ; var_dump ( get_object_vars ( $test )); $test -> test (); ?> ...
https://man.plustar.jp/php/function.get-object-vars.html - [similar]
配列と同様の形式で、複数の変数への代入を行う 2916
« ksort natcasesort » PHP Manual 配列 関数 配列と同様の形式で、複数の変数への代入を行う list (PH ... 文字列では動作しません list( $bar ) = "abcde" ; var_dump ( $bar ); // NULL ?> 例2 list() の使用法の例 <?php ... list( $b , $c )) = array( 1 , array( 2 , 3 )); var_dump ( $a , $b , $c ); ?> int(1) int(2) int(3) 例4 list ... oo [ 1 ] = 'd' ; list( $x , $y , $z ) = $foo ; var_dump ( $foo , $x , $y , $z ); 結果は次のようになります ...
https://man.plustar.jp/php/function.list.html - [similar]
指定したモジュールのセルフテストを実行する 2916
« mcrypt_module_open mdecrypt_generic » PHP Manual Mcrypt 関数 指定したモジュールのセルフテストを ... す。 例 例1 mcrypt_module_self_test() の例 <?php var_dump ( mcrypt_module_self_test ( MCRYPT_RIJNDAEL_128 )) ... . "\n" ; var_dump ( mcrypt_module_self_test ( MCRYPT_BOGUS_CYPHER )) ...
https://man.plustar.jp/php/function.mcrypt-module-self-test.html - [similar]
Oracle Database の暗黙の結果セットを持つ親ステートメント・リソースから次の子ステ... 2916
« oci_free_statement oci_lob_copy » PHP Manual OCI8 関数 Oracle Database の暗黙の結果セットを持つ ... ay ( $stid_1 , OCI_ASSOC + OCI_RETURN_NULLS ); var_dump ( $row ); $row = oci_fetch_array ( $stid_2 , OCI_A ... SSOC + OCI_RETURN_NULLS ); var_dump ( $row ); $row = oci_fetch_array ( $stid_1 , OCI_A ... SSOC + OCI_RETURN_NULLS ); var_dump ( $row ); $row = oci_fetch_array ( $stid_2 , OCI_A ... SSOC + OCI_RETURN_NULLS ); var_dump ( $row ); // 出力です。 // array(2) { // ["CITY"]= ...
https://man.plustar.jp/php/function.oci-get-implicit-resultset.html - [similar]
指定した変数の割当を解除する 2916
« unserialize var_dump » PHP Manual 変数操作 関数 指定した変数の割当を解除する unset (PHP 4, PHP ... .0 で削除されました。 <?php $name = 'Felipe' ; var_dump ((unset) $name ); var_dump ( $name ); ?> 上の例の出 ...
https://man.plustar.jp/php/function.unset.html - [similar]