検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 374 for Test (0.008 sec.)
Write to a lob object 6732
« cubrid_lob2_tell cubrid_lock_read » PHP Manual CUBRID 関数 Write to a lob object cubrid_lob2_w ... ます。 例 例1 cubrid_lob2_write() example 1 <?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 ... n ); ?> 例2 cubrid_lob2_write() example 2 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect ...
https://man.plustar.jp/php/function.cubrid-lob2-write.html - [similar]
Test job server response 6732
« GearmanWorker::__construct GearmanWorker::error » PHP Manual GearmanWorker Test job server res ... echo (PECL gearman >= 0.6.0) GearmanWorker::echo — Test job server response 説明 public GearmanWorker::ech ... job servers to see if they echo it back. This is a test function to see if job servers are responding prop ... ey echo it back [deprecated] 関連キーワード: job , Test , server , GearmanWorker , data , see , servers , ...
https://man.plustar.jp/php/gearmanworker.echo.html - [similar]
6689
« 定義済み定数 Zlib 関数 » PHP Manual Zlib 例 例 テンポラリファイルをオープンし、テスト用文字列を ... lib の例 <?php $filename = tempnam ( '/tmp' , 'zlibtest' ) . '.gz' ; echo "<html>\n<head></head>\n<body>\n ... <pre>\n" ; $s = "Only a test, test, test, test, test, test, test, test!\n" ; // ...
https://man.plustar.jp/php/zlib.examples.html - [similar]
Test training params on subsets of the training data 6513
« SVM::__construct SVM::getOptions » PHP Manual SVM Test training params on subsets of the train ... svalidate (PECL svm >= 0.1.0) SVM::crossvalidate — Test training params on subsets of the training data 説 ... ber_of_folds ): float Crossvalidate can be used to test the effectiveness of the current parameter set on ... ata. Given a problem set and a n "folds", it separates the problem set into n subsets, and the repeatedly ... trains on one subset and tests on another. While the accuracy will generally be ...
https://man.plustar.jp/php/svm.crossvalidate.html - [similar]
フラグを取得する 6478
« RegexIterator::__construct RegexIterator::getMode » PHP Manual RegexIterator フラグを取得する ... ます。 例 例1 RegexIterator::getFlags() の例 <?php $test = array ( 'str1' => 'test 1' , 'teststr2' => 'anot ... her test' , 'str3' => 'test 123' ); $arrayIterator = new Ar ... rayIterator ( $test ); $regexIterator = new RegexIterator ( $arrayIter ... ator , '/^test/' ); $regexIterator -> setFlags ( RegexIterator :: ...
https://man.plustar.jp/php/regexiterator.getflags.html - [similar]
CURLStringFile オブジェクトを作る 6434
« CURLStringFile Event » PHP Manual CURLStringFile CURLStringFile オブジェクトを作る CURLStringF ... dump($_FILES); var_dump(file_get_contents($_FILES['test_string']['tmp_name'])); ?> */ // cURL ハンドルを作 ... クトを作ります $cstringfile = new CURLStringFile ( 'test upload contents' , 'test.txt' , 'text/plain' ); // ... POST データを設定します $data = array( 'test_string' => $cstringfile ); curl_setopt ( $ch , CUR ... ); ?> 上の例の出力は以下となります。 array(1) { ["test_string"]=> array(5) { ["name"]=> string(8) "test.t ...
https://man.plustar.jp/php/curlstringfile.construct.html - [similar]
遅延静的束縛 (Late Static Bindings) 6346
« オブジェクトの比較 オブジェクトと参照 » PHP Manual クラスとオブジェクト 遅延静的束縛 (Late Sta ... tic Bindings) 遅延静的束縛 (Late Static Bindings) PHP には、遅延静的束縛と呼ばれる機能 ... who () { echo __CLASS__ ; } public static function test () { self :: who (); } } class B extends A { publi ... static function who () { echo __CLASS__ ; } } B :: test (); ?> 上の例の出力は以下となります。 A 遅延静的束 ... す。 このキーワードを使用すると、先ほどの例における test() から B を参照できるようになります。 このキーワー ...
https://man.plustar.jp/php/language.oop5.late-static-bindings.html - [similar]
テスト 6346
« インストール手順 実行時設定 » PHP Manual インストール/設定 テスト テスト OCI8 のテストスイート ... は ext/oci8/tests にあります。 OCI8 のテストを実行すると、テストが失 ... se Resident Connection Pooling をテストする場合は $test_drcp を true に設定し、 適切な DRCP プールサーバー ... 環境変数で設定することもできます。 $ export PHP_OCI8_TEST_USER=system $ export PHP_OCI8_TEST_PASS=oracle $ e ... xport PHP_OCI8_TEST_DB=localhost/XE $ export PHP_OCI8_TEST_DRCP=FALSE ...
https://man.plustar.jp/php/oci8.test.html - [similar]
新しい RegexIterator を作成する 6258
« RegexIterator::accept RegexIterator::getFlags » PHP Manual RegexIterator 新しい RegexIterator ... ーします。 例 例1 RegexIterator::__construct() の例 'test' で始まるすべての文字列を取り出す新しい RegexItera ... <?php $arrayIterator = new ArrayIterator (array( 'test 1' , 'another test' , 'test 123' )); $regexIterato ... r = new RegexIterator ( $arrayIterator , '/^test/' ); foreach ( $regexIterator as $value ) { echo $ ... ?> 上の例の出力は、 たとえば以下のようになります。 test 1 test 123 参考 preg_match() - 正規表現によるマッチ ...
https://man.plustar.jp/php/regexiterator.construct.html - [similar]
クォートを追加する 6215
« Session::listClients Session::releaseSavepoint » PHP Manual mysql_xdevapi\Session クォートを追 ... lx://user:password@localhost" ); $first = "MySQL's test" ; var_dump ( $first ); var_dump ( $session -> quo ... teName ( $first )); $second = 'Another `test` "like" `this`' ; var_dump ( $second ); var_dump ( ... たとえば以下のようになります。 string(12) "MySQL's test" string(14) "`MySQL's test`" string(28) "Another ` ... test` "like" `this`" string(34) "`Another ``test`` "like" ``this```" 関連キーワード: クォート , 追加 ...
https://man.plustar.jp/php/mysql-xdevapi-session.quotename.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT