検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 790 for result (0.042 sec.)
行を配列として取得する 4328
« pg_fetch_all pg_fetch_assoc » PHP Manual PostgreSQL 関数 行を配列として取得する pg_fetch_array ... 行を配列として取得する 説明 pg_fetch_array ( PgSql\Result $result , ? int $row = null , int $mode = PGSQL_BO ... 」。そして、きわめて簡単に使用できます。 パラメータ result pg_query() 、 pg_query_params() や (様々な関数があ ... りますが、特に) pg_execute() が返した PgSql\Result クラスのインスタンス。 row 取得する行番号。最初の行 ... false を返します。 変更履歴 バージョン 説明 8.1.0 result は、 PgSql\Result クラスのインスタンスを期待するよ ...
https://man.plustar.jp/php/function.pg-fetch-array.html - [similar]
Fetch a result row as an associative array, a numeric array, or both 4314
« cubrid_error cubrid_fetch_assoc » PHP Manual CUBRID MySQL 互換関数 Fetch a result row as an as ... (PECL CUBRID >=8.3.0) cubrid_fetch_array — Fetch a result row as an associative array, a numeric array, or b ... oth 説明 cubrid_fetch_array ( resource $result , int $type = CUBRID_BOTH ): array The cubrid_fetc ... unction is used to get a single row from the query result and returns an array. The cursor automatically mov ... es to the next row after getting the result. パラメータ result Result comes from a call to cub ...
https://man.plustar.jp/php/function.cubrid-fetch-array.html - [similar]
LDAP ページネーション制御情報を送信する 4314
« ldap_control_paged_result_response ldap_count_entries » PHP Manual LDAP 関数 LDAP ページネーシ ... ョン制御情報を送信する ldap_control_paged_result (PHP 5 >= 5.4.0, PHP 7) ldap_control_paged_result ... トロール も参照して下さい。 説明 ldap_control_paged_result ( resource $link , int $pagesize , bool $iscritica ... ーから送られる opaque structure ( ldap_control_paged_result_response() )。 戻り値 成功した場合に true を、失敗 ... gination with a page size of 1. ldap_control_paged_result ( $ds , 1 ); $sr = ldap_search ( $ds , $dn , $filt ...
https://man.plustar.jp/php/function.ldap-control-paged-result.html - [similar]
Run a single task and return a result [deprecated] 4314
« GearmanClient::data GearmanClient::doBackground » PHP Manual GearmanClient Run a single task a ... nd return a result [deprecated] GearmanClient::do (PECL gearman >= 0. ... GearmanClient::do — Run a single task and return a result [deprecated] 説明 public GearmanClient::do ( strin ... に用いる一意な ID。 戻り値 A string representing the results of running a task. 例 例1 Simple job submission w ... $gmclient -> addServer (); echo "Sending job\n" ; $result = $gmclient -> doNormal ( "reverse" , "Hello!" ); ...
https://man.plustar.jp/php/gearmanclient.do.html - [similar]
Get column types in result 4294
« cubrid_column_names cubrid_commit » PHP Manual CUBRID 関数 Get column types in result cubrid_c ... = 8.3.0) cubrid_column_types — Get column types in result 説明 cubrid_column_types ( resource $req_identifie ... column_types() function gets column types of query results by using req_identifier . パラメータ req_identifi ... nnect ( "localhost" , 33000 , "demodb" , "dba" ); $result = cubrid_execute ( $conn , "SELECT * FROM game WHE ... dal='G'" ); $column_names = cubrid_column_names ( $result ); $column_types = cubrid_column_types ( $result ) ...
https://man.plustar.jp/php/function.cubrid-column-types.html - [similar]
結果データを得る 4274
« odbc_result_all odbc_rollback » PHP Manual ODBC 関数 結果データを得る odbc_result (PHP 4, PHP ... 5, PHP 7, PHP 8) odbc_result — 結果データを得る 説明 odbc_result ( resource $st ... ナリデータの場合は true を返します。 例 最初の odbc_result() コールにより、クエリー結果の 現在のレコードにおけ ... 3 番目のフィールドの値が返されます。 2 番目の odbc_result() コールにより、クエリーの 結果の現在のレコードにお ... ドとして指定した場合にもエラーを生じます。 例1 odbc_result() の例 <?php $item_3 = odbc_result ( $Query_ID , 3 ...
https://man.plustar.jp/php/function.odbc-result.html - [similar]
Returns the server associated with this write result 4274
« MongoDB\Driver\WriteResult::getModifiedCount MongoDB\Driver\WriteResult::getUpsertedCount » PH ... P Manual MongoDB\Driver\WriteResult Returns the server associated with this write resu ... lt MongoDB\Driver\WriteResult::getServer (mongodb >=1.0.0) MongoDB\Driver\WriteR ... er — Returns the server associated with this write result 説明 final public MongoDB\Driver\WriteResult::getS ... e MongoDB\Driver\Server associated with this write result. This is the server that executed the MongoDB\Driv ...
https://man.plustar.jp/php/mongodb-driver-writeresult.getserver.html - [similar]
Include the lower bound term in the result set 4274
« SolrQuery::setTermsField SolrQuery::setTermsIncludeUpperBound » PHP Manual SolrQuery Include t ... he lower bound term in the result set SolrQuery::setTermsIncludeLowerBound (PECL sol ... deLowerBound — Include the lower bound term in the result set 説明 public SolrQuery::setTermsIncludeLowerBou ... g ): SolrQuery Include the lower bound term in the result set. パラメータ flag Include the lower bound term ... in the result set 戻り値 Returns the current SolrQuery object, i ...
https://man.plustar.jp/php/solrquery.settermsincludelowerbound.html - [similar]
ステートメントの実行 4260
« データベース接続 プリペアドステートメント » PHP Manual クイックスタートガイド ステートメントの ... び出しは、 mysqli::real_query() の後に mysqli::store_result() を呼び出すことと同じです。 例1 クエリを実行する ... ( "INSERT INTO test(id) VALUES (1), (2), (3)" ); $result = $mysqli -> query ( "SELECT id FROM test ORDER BY ... C" ); echo "Reverse order...\n" ; for ( $row_no = $result -> num_rows - 1 ; $row_no >= 0 ; $row_no --) { $re ... sult -> data_seek ( $row_no ); $row = $result -> fetch_assoc (); echo " id = " . $row [ 'id' ] . ...
https://man.plustar.jp/php/mysqli.quickstart.statements.html - [similar]
Set the number of similar documents to return for each result 4260
« SolrQuery::setMltBoost SolrQuery::setMltMaxNumQueryTerms » PHP Manual SolrQuery Set the number ... of similar documents to return for each result SolrQuery::setMltCount (PECL solr >= 0.9.2) SolrQu ... the number of similar documents to return for each result 説明 public SolrQuery::setMltCount ( int $count ): ... the number of similar documents to return for each result パラメータ count The number of similar documents t ... o return for each result 戻り値 Returns the current SolrQuery object, if th ...
https://man.plustar.jp/php/solrquery.setmltcount.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT