検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 374 for Test (0.008 sec.)
Read from BLOB/CLOB data 4907
« cubrid_lob2_new cubrid_lob2_seek64 » PHP Manual CUBRID 関数 Read from BLOB/CLOB data cubrid_lo ... lure. 例 例1 cubrid_lob2_read() example 1 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect ... ); $req = cubrid_execute ( $conn , "select * from test_lob" ); $row = cubrid_fetch_row ( $req , CUBRID_LO ... nn ); ?> 例2 cubrid_lob2_read() example 2 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect ... ); $req = cubrid_execute ( $conn , "select * from test_lob" ); $row = cubrid_fetch_row ( $req , CUBRID_LO ...
https://man.plustar.jp/php/function.cubrid-lob2-read.html - [similar]
Move the cursor of a lob object 4907
« cubrid_lob2_seek64 cubrid_lob2_size64 » PHP Manual CUBRID 関数 Move the cursor of a lob object ... します。 例 例1 cubrid_lob2_seek() example <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect ... ); cubrid_execute ( $conn , "DROP TABLE if exists test_lob" ); cubrid_execute ( $conn , "CREATE TABLE tes ... )" ); $req = cubrid_prepare ( $conn , "INSERT INTO test_lob VALUES(2, ?)" ); $lob = cubrid_lob2_new ( $con ...
https://man.plustar.jp/php/function.cubrid-lob2-seek.html - [similar]
Train one epoch with a set of training data 4907
« fann_test fann_train_on_data » PHP Manual Fann 関数 Train one epoch with a set of training dat ... ins on an entire dataset for a period of time fann_test_data() - Test a set of training data and calculate ...
https://man.plustar.jp/php/function.fann-train-epoch.html - [similar]
新機能 4907
« PHP 7.0.x から PHP 7.1.x への移行 新しい関数 » PHP Manual PHP 7.0.x から PHP 7.1.x への移行 新 ... でなく null も渡せるようになります。 <?php function testReturn (): ? string { return 'elePHPant' ; } var_du ... mp ( testReturn ()); function testReturn (): ? string { retu ... rn null ; } var_dump ( testReturn ()); function test (? string $name ) { var_d ... ump ( $name ); } test ( 'elePHPant' ); test ( null ); test (); 上の例の出 ...
https://man.plustar.jp/php/migration71.new-features.html - [similar]
例外によるエラー処理の有効化および無効化を行う 4907
« RarException::isUsingExceptions Zip » PHP Manual RarException 例外によるエラー処理の有効化およ ... : ERAR_EOPEN (file open error) in C:\php_rar\trunk\tests\test.php on line 3 bool(false) bool(true) Fatal e ... ERAR_EOPEN (file open error)' in C:\php_rar\trunk\tests\test.php:8 Stack trace: #0 C:\php_rar\trunk\tests ... \test.php(8): RarArchive::open('does_not_exist....') #1 ... {main} thrown in C:\php_rar\trunk\tests\test.php on line 8 参考 RarException::isUsingExce ...
https://man.plustar.jp/php/rarexception.setusingexceptions.html - [similar]
The number of fail bits 4863
« fann_get_bit_fail_limit fann_get_cascade_activation_functions_count » PHP Manual Fann 関数 The ... d updated by all the same functions which also updates the MSE value (e.g. fann_test_data() , fann_train_e ... Resets the mean square error from the network fann_test_data() - Test a set of training data and calculate ...
https://man.plustar.jp/php/function.fann-get-bit-fail.html - [similar]
配列の全ての要素にユーザー定義の関数を適用する 4819
« array_walk_recursive array » PHP Manual 配列 関数 配列の全ての要素にユーザー定義の関数を適用す ... ge" , "b" => "banana" , "c" => "apple" ); function test_alter (& $item1 , $key , $prefix ) { $item1 = " $p ... refix : $item1 " ; } function test_print ( $item2 , $key ) { echo " $key . $item2 \n" ... ; } echo "Before ...:\n" ; array_walk ( $fruits , 'test_print' ); array_walk ( $fruits , 'test_alter' , 'f ... echo "... and after:\n" ; array_walk ( $fruits , 'test_print' ); ?> 上の例の出力は以下となります。 Before ...
https://man.plustar.jp/php/function.array-walk.html - [similar]
新機能 4819
« PHP 7.1.x から PHP 7.2.x への移行 新しい関数 » PHP Manual PHP 7.1.x から PHP 7.2.x への移行 新 ... や (共変) 戻り値の型付けで使えます。 <?php function test ( object $obj ) : object { return new SplQueue (); ... } test (new StdClass ()); 名前指定による拡張モジュールのロ ... ました。 <?php abstract class A { abstract function test ( string $s ); } abstract class B extends A { // オ ... や戻り値の共変性は維持しています。 abstract function test ( $s ) : int ; } Sodium がコアモジュールに モダンな ...
https://man.plustar.jp/php/migration72.new-features.html - [similar]
ZIP ファイルアーカイブをオープンする 4819
« ZipArchive::locateName ZipArchive::registerCancelCallback » PHP Manual ZipArchive ZIP ファイル ... php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' ); if ( $res === TRUE ) { echo '成功' ; $zip ... -> extractTo ( 'test' ); $zip -> close (); } else { echo '失敗、コード: ... php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' , ZipArchive :: CREATE ); if ( $res === TRUE ... ) { $zip -> addFromString ( 'test.txt' , 'ここにファイルの内容を書きます' ); $zip -> ...
https://man.plustar.jp/php/ziparchive.open.html - [similar]
"遅延静的束縛" のクラス名 4775
« enum_exists get_class_methods » PHP Manual クラス/オブジェクト関数 "遅延静的束縛" のクラス名 g ... の使用法 <?php class foo { static public function test () { var_dump ( get_called_class ()); } } class ba ... r extends foo { } foo :: test (); bar :: test (); ?> 上の例の出力は以下となります ...
https://man.plustar.jp/php/function.get-called-class.html - [similar]