Results of 1 - 10 of about 374 for TEST (0.001 sec.)
- Test with a set of inputs, and a set of desired outputs 9129
- « fann_test_data fann_train_epoch » PHP Manual Fann 関数 Test with a set of inputs, and a set of
... desired outputs fann_test (PECL fann >= 1.0.0) fann_test — Test with a set o ... f inputs, and a set of desired outputs 説明 fann_test ( resource $ann , array $input , array $desired_ou ... tput ): array Test with a set of inputs, and a set of desired outputs ... . This operation updates the mean square error, but does not change the netw ...
-
https://man.plustar.jp/php/function.fann-test.html
- [similar]
- プロパティ 8953
- « クラスの基礎 オブジェクト定数 » PHP Manual クラスとオブジェクト プロパティ プロパティ クラスの
... きます。 例4 読み取り専用プロパティの例 <?php class Test { public readonly string $prop ; public function _ ... p ) { // 正しい初期化 $this -> prop = $prop ; } } $test = new Test ( "foobar" ); // 正しいプロパティの読み ... 取り var_dump ( $test -> prop ); // string(6) "foobar" // 不正な再代入で ... す。同じ値を代入することは問題ありません。 $test -> prop = "foobar" ; // Error: Cannot modify reado ...
-
https://man.plustar.jp/php/language.oop5.properties.html
- [similar]
- Test a set of training data and calculates the MSE for the training data 8260
- « fann_subset_train_data fann_test » PHP Manual Fann 関数 Test a set of training data and calcul
... ates the MSE for the training data fann_test_data (PECL ... fann >= 1.0.0) fann_test_data — Test a set of training data and calculates ... the MSE for the training data 説明 fann_test_data ( resource $ann , resource $data ): float Tes ... t a set of training data and calculates the MSE for the training data. This function update ...
-
https://man.plustar.jp/php/function.fann-test-data.html
- [similar]
- 正規表現フラグを設定する 7645
- « RegexIterator::setMode インターフェイス » PHP Manual RegexIterator 正規表現フラグを設定する Re
... RegexIterator を作成します。これは、 配列のキーが 'test' で始まるすべてのエントリを取り出します。 <?php $t ... est = array ( 'test 1' , 'another test' , 'test 123' ); $arrayIterator ... = new ArrayIterator ( $test ); $regexIterator = new RegexIterator ( $arrayIter ... ator , '/^test/' , RegexIterator :: GET_MATCH ); $regexIterator - ...
-
https://man.plustar.jp/php/regexiterator.setpregflags.html
- [similar]
- 例 7523
- « 定義済み定数 Seaslog 関数 » PHP Manual Seaslog 例 例 例1 Get and set base path <?php $basePath
... etBasePath (); SeasLog :: setBasePath ( '/log/base_test' ); $basePath2 = SeasLog :: getBasePath (); var_du ... す。 string(12) "/var/log/www" string(14) "/log/base_test" 例2 Get and set logger <?php $lastLogger1 = SeasL ... og :: getLastLogger (); SeasLog :: setLogger ( 'testModule/app1' ); $lastLogger2 = SeasLog :: getLastLo ... 下のようになります。 string(7) "default" string(15) "testModule/app1" 例3 Fast write log <?php SeasLog :: lo ...
-
https://man.plustar.jp/php/seaslog.examples.html
- [similar]
- ストアドプロシージャ 7479
- « プリペアドステートメント 複数のステートメント » PHP Manual クイックスタートガイド ストアドプロ
... abase" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT)" ... REATE PROCEDURE p(IN id_val INT) BEGIN INSERT INTO test(id) VALUES(id_val); END;" ); $mysqli -> query ( "C ... )" ); $result = $mysqli -> query ( "SELECT id FROM test" ); var_dump ( $result -> fetch_assoc ()); 上の例の ... abase" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT)" ...
-
https://man.plustar.jp/php/mysqli.quickstart.stored-procedures.html
- [similar]
- プリペアドステートメント 7391
- « ステートメントの実行 ストアドプロシージャ » PHP Manual クイックスタートガイド プリペアドステー
... tement */ $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT, ... epare */ $stmt = $mysqli -> prepare ( "INSERT INTO test(id, label) VALUES (?, ?)" ); /* Prepared statement ... tement */ $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT, ... epare */ $stmt = $mysqli -> prepare ( "INSERT INTO test(id, label) VALUES (?, ?)" ); /* Prepared statement ...
-
https://man.plustar.jp/php/mysqli.quickstart.prepared-statements.html
- [similar]
- フラグを設定する 7215
- « RegexIterator::getRegex RegexIterator::setMode » PHP Manual RegexIterator フラグを設定する Reg
... 新しい RegexIterator を作成します。これは、キーが ' test ' ではじまるすべてのエントリを取り出します。 <?php ... $test = array ( 'str1' => 'test 1' , 'teststr2' => 'anot ... her test' , 'str3' => 'test 123' ); $arrayIterator = new Ar ... rayIterator ( $test ); $regexIterator = new RegexIterator ( $arrayIter ...
-
https://man.plustar.jp/php/regexiterator.setflags.html
- [similar]
- 操作モードを設定する 7084
- « RegexIterator::setFlags RegexIterator::setPregFlags » PHP Manual RegexIterator 操作モードを設定
... ません。 例 例1 RegexIterator::setMode() の例 <?php $test = array ( 'str1' => 'test 1' , 'test str2' => 'ano ... ther test' , 'str3' => 'test 123' ); $arrayIterator = new Ar ... rayIterator ( $test ); // 'test ' で始まってその後に 1 桁以上の数字が続 ... Iterator = new RegexIterator ( $arrayIterator , '/^test (\d+)/' ); // 操作モードは、実際の値をマッチした部 ...
-
https://man.plustar.jp/php/regexiterator.setmode.html
- [similar]
- ステートメントの実行 6776
- « データベース接続 プリペアドステートメント » PHP Manual クイックスタートガイド ステートメントの
... abase" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT)" ... abase" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT)" ... ); $mysqli -> query ( "INSERT INTO test(id) VALUES (1), (2), (3)" ); $result = $mysqli -> ... query ( "SELECT id FROM test ORDER BY id ASC" ); echo "Reverse order...\n" ; fo ...
-
https://man.plustar.jp/php/mysqli.quickstart.statements.html
- [similar]