検索

phrase: max: clip:
target: order:
Results of 291 - 300 of about 790 for result (0.022 sec.)
プリペアドステートメントから結果を取得し、バインド変数に格納する 3340
« mysqli_stmt::execute mysqli_stmt::$field_count » PHP Manual mysqli_stmt プリペアドステートメン ... ステートメントから結果を読み込み、 mysqli_stmt_bind_result() でバインドした変数に格納します。 注意 : mysqli_s ... 転送はバッファを用いずに行います。 mysqli_stmt_store_result() をコールするとバッファを使用し、パフォーマンスが ... e (); /* 結果変数をバインドします */ $stmt -> bind_result ( $name , $code ); /* 値を取得します */ while ( $s ... ); /* 結果変数をバインドします */ mysqli_stmt_bind_result ( $stmt , $name , $code ); /* 値を取得します */ wh ...
https://man.plustar.jp/php/mysqli-stmt.fetch.html - [similar]
マルチクエリからの結果がまだ残っているかどうかを調べる 3340
« mysqli::kill mysqli::multi_query » PHP Manual mysqli マルチクエリからの結果がまだ残っているかど ... うかを調べる mysqli::more_results mysqli_more_results (PHP 5, PHP 7, PHP 8) mysqli: ... :more_results -- mysqli_more_results — マルチクエリからの結果が ... を調べる 説明 オブジェクト指向型 public mysqli::more_results (): bool 手続き型 mysqli_more_results ( mysqli $m ... タベース上でひとつ以上のクエリを実行する mysqli_next_result() - multi_query の、次の結果を準備する mysqli_stor ...
https://man.plustar.jp/php/mysqli.more-results.html - [similar]
Data Structures 3326
« untaint はじめに » PHP Manual その他の基本モジュール Data Structures Data Structures はじめに ... urns the last value Ds\Sequence::map — Returns the result of applying a callback to each value Ds\Sequence:: ... merge — Returns the result of adding all given values to the sequence Ds\Sequ ... eturns the last value Ds\Vector::map — Returns the result of applying a callback to each value Ds\Vector::me ... rge — Returns the result of adding all given values to the vector Ds\Vector ...
https://man.plustar.jp/php/book.ds.html - [similar]
InterBase データベースから 1 行分の結果を取得する 3326
« ibase_fetch_object ibase_field_info » PHP Manual Firebird/InterBase 関数 InterBase データベース ... 分の結果を取得する 説明 ibase_fetch_row ( resource $result_identifier , int $fetch_flag = 0 ): array ibase_fe ... tch_row() は、指定した result_identifier に関連付けられた結果からデータを 1 行取 ... 。行がもうない場合には false を返します。 パラメータ result_identifier InterBase 結果 ID。 fetch_flag fetch_fl ... fetch , 取得 , ibase , データベース , row , flag , result , identifier , BLOB , 配列 ...
https://man.plustar.jp/php/function.ibase-fetch-row.html - [similar]
結果において指定したフィールドのフラグを取得する 3326
« mysql_fetch_row mysql_field_len » PHP Manual MySQL 関数 結果において指定したフィールドのフラグ ... nMeta() [flags] 説明 mysql_field_flags ( resource $result , int $field_offset ): string | false mysql_field_ ... 値を explode() で分割することができます。 パラメータ result 評価された結果 リソース 。この結果は、 mysql_query ... "timestamp" 例 例1 mysql_field_flags() の例 <?php $result = mysql_query ( "SELECT id,email FROM people WHERE ... id = '42'" ); if (! $result ) { echo 'Could not run query: ' . mysql_error (); ...
https://man.plustar.jp/php/function.mysql-field-flags.html - [similar]
Oracle Database の暗黙の結果セットを持つ親ステートメント・リソースから次の子ステ... 3326
« oci_free_statement oci_lob_copy » PHP Manual OCI8 関数 Oracle Database の暗黙の結果セットを持つ ... の子ステートメント・リソースを返す oci_get_implicit_resultset (PHP 5 >= 5.6.0, PHP 7, PHP 8, PECL OCI8 >= 2.0 ... .0) oci_get_implicit_resultset — Oracle Database の暗黙の結果セットを持つ親ステ ... ステートメント・リソースを返す 説明 oci_get_implicit_resultset ( resource $statement ): resource | false ストア ... le Database 12 (またはそれ以降) の DBMS_SQL.RETURN_RESULT PL/SQL 関数によりクエリの結果を返します。 これによ ...
https://man.plustar.jp/php/function.oci-get-implicit-resultset.html - [similar]
Using the PHP Library for MongoDB (PHPLIB) 3326
« Tutorials Application Performance Monitoring (APM) » PHP Manual Tutorials Using the PHP Librar ... 7017" ); $collection = $client -> demo -> beers ; $result = $collection -> insertOne ( [ 'name' => 'Hinterla ... 'BrewDog' ] ); echo "Inserted with Object ID ' { $result -> getInsertedId ()} '" ; ?> Instead of injecting ... old driver), it is now made available through the result object returned by the insertOne method. After ins ... 7017" ); $collection = $client -> demo -> beers ; $result = $collection -> find ( [ 'name' => 'Hinterland' , ...
https://man.plustar.jp/php/mongodb.tutorial.library.html - [similar]
MySQL データベース上のテーブルのリストを得る 3306
« mysql_list_processes mysql_num_fields » PHP Manual MySQL 関数 MySQL データベース上のテーブルの ... l' ; exit; } $sql = "SHOW TABLES FROM $dbname " ; $result = mysql_query ( $sql ); if (! $result ) { echo "DB ... rror (); exit; } while ( $row = mysql_fetch_row ( $result )) { echo "Table: { $row [ 0 ]} \n" ; } mysql_free ... _result ( $result ); ?> 注意 注意 : 下位互換のために、次の ...
https://man.plustar.jp/php/function.mysql-list-tables.html - [similar]
疑似ランダムなバイト文字列を生成する 3306
« openssl_public_encrypt openssl_seal » PHP Manual OpenSSL 関数 疑似ランダムなバイト文字列を生成 ... _random_pseudo_bytes ( int $length , bool &$strong_result = null ): string 疑似ランダムなバイト文字列を生成し ... を知ることもできます。 オプションのパラメータ strong_result を使います。 これが false になることはまずないでし ... を非 null の整数値にキャストして利用します。 strong_result これを渡しておくと、使ったアルゴリズムが暗号学的に ... を返します。 変更履歴 バージョン 説明 8.0.0 strong_result は、nullable になりました。 例 例1 openssl_random_ ...
https://man.plustar.jp/php/function.openssl-random-pseudo-bytes.html - [similar]
変更の操作を実行する 3306
« CollectionModify::__construct CollectionModify::limit » PHP Manual mysql_xdevapi\CollectionMod ... devapi\CollectionModify::execute (): mysql_xdevapi\Result MySQLサーバに CRUD 操作のリクエストを送信するために ... けた行数のような、操作の状態を確認するために使われる Result オブジェクトを返します。 例 例1 mysql_xdevapi\Coll ... 変更 , 実行 , CollectionModify , execute , xdevapi , Result , パラメータ , 確認 , 状態 ...
https://man.plustar.jp/php/mysql-xdevapi-collectionmodify.execute.html - [similar]