検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 374 for Test (0.043 sec.)
接続を問い合わせる 4125
« mysqli::ping mysqli::prepare » PHP Manual mysqli 接続を問い合わせる mysqli::poll mysqli_poll ( ... k1 = mysqli_connect (); $link1 -> query ( "SELECT 'test'" , MYSQLI_ASYNC ); $all_links = array( $link1 ); ... ; ?> 上の例の出力は以下となります。 Array ( [0] => test ) 参考 mysqli_query() - データベース上でクエリを実 ...
https://man.plustar.jp/php/mysqli.poll.html - [similar]
ドキュメントで宣言されている名前空間を返す 4125
« SimpleXMLElement::count SimpleXMLElement::getName » PHP Manual SimpleXMLElement ドキュメントで ... http://example.org/ns" xmlns:t="http://example.org/test"> <p:person t:id="1">John Doe</p:person> <p:person ... ple.org/ns" ["t"]=> string(23) "http://example.org/test" ["a"]=> string(23) "http://example.org/addr" } 参 ...
https://man.plustar.jp/php/simplexmlelement.getdocnamespaces.html - [similar]
別途提供される設定ファイルを使用して文字列を修正する 4125
« tidy::repairFile tidy::root » PHP Manual tidy 別途提供される設定ファイルを使用して文字列を修正 ... () の例 <?php ob_start (); ?> <html> <head> <title>test</title> </head> <body> <p>error</i> </body> </html ... C "-//W3C//DTD HTML 3.2//EN"> <html> <head> <title>test</title> </head> <body> <p>error</p> </body> </html ...
https://man.plustar.jp/php/tidy.repairstring.html - [similar]
com クラス 4081
« 配列と配列形式の COM プロパティ com::__construct » PHP Manual COM com クラス com クラス (PHP 4 ... 行います $word -> Selection -> TypeText ( "This is a test..." ); $word -> Documents [ 1 ]-> SaveAs ( "Useles ... s test.doc" ); // word を閉じます $word -> Quit (); // オ ...
https://man.plustar.jp/php/class.com.html - [similar]
様々な assert フラグを設定/取得する 4081
« PHP オプション/情報 関数 assert » PHP Manual PHP オプション/情報 関数 様々な assert フラグを設 ... d: $message " ; } // これがテスト関数です function test_assert ( $parameter ) { assert ( is_bool ( $parame ... BACK , 'assert_failure' ); // 失敗する assert です test_assert ( 1 ); // ASSERT_BAIL が true なので // 決し ...
https://man.plustar.jp/php/function.assert-options.html - [similar]
指定されたメールボックスに文字列メッセージを追加する 4081
« imap_alerts imap_base64 » PHP Manual IMAP 関数 指定されたメールボックスに文字列メッセージを追加 ... e.com\r\n" . "To: you@example.com\r\n" . "Subject: test\r\n" . "\r\n" . "this is a test message, please ig ...
https://man.plustar.jp/php/function.imap-append.html - [similar]
指定したテーブルに関するカラムおよび付随する権限のリストを取得する 4081
« odbc_close odbc_columns » PHP Manual ODBC 関数 指定したテーブルに関するカラムおよび付随する権限 ... columnprivileges ( $conn , 'TutorialDB' , 'dbo' , 'test' , 'id' ); while (( $row = odbc_fetch_array ( $pri ... => TutorialDB [TABLE_SCHEM] => dbo [TABLE_NAME] => test [COLUMN_NAME] => id [GRANTOR] => dbo [GRANTEE] => ...
https://man.plustar.jp/php/function.odbc-columnprivileges.html - [similar]
直近の行のオブジェクト ID を返す 4081
« pg_last_notice pg_lo_close » PHP Manual PostgreSQL 関数 直近の行のオブジェクト ID を返す pg_la ... ンプルのテーブルを作ります pg_query ( "CREATE TABLE test (a INTEGER) WITH OIDS" ); // データを追加します $r ... es = pg_query ( "INSERT INTO test VALUES (1)" ); $oid = pg_last_oid ( $res ); ?> 参考 ...
https://man.plustar.jp/php/function.pg-last-oid.html - [similar]
指定した関数を __autoload() の実装として登録する 4081
« spl_autoload_functions spl_autoload_unregister » PHP Manual SPL 関数 指定した関数を __autoload ... espace Foobar ; class Foo { static public function test ( $name ) { print '[[' . $name . ']]' ; } } spl_au ... toload_register ( __NAMESPACE__ . '\Foo::test' ); new InexistentClass ; ?> 上の例の出力は、 たと ...
https://man.plustar.jp/php/function.spl-autoload-register.html - [similar]
無名関数 4081
« 内部(ビルトイン)関数 アロー関数 » PHP Manual 関数 無名関数 無名関数 無名関数は クロージャ と ... 54.29 です ?> 例5 $this の自動バインド <?php class Test { public function testing () { return function() { ... var_dump ( $this ); }; } } $object = new Test ; $function = $object -> testing (); $function (); ... ?> 上の例の出力は以下となります。 object(Test)#1 (0) { } クラスのコンテキストで宣言した場合は、現 ...
https://man.plustar.jp/php/functions.anonymous.html - [similar]