検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 615 for connection (0.032 sec.)
テキスト型フィールドに挿入するために、リテラルをエスケープする 4125
« pg_escape_identifier pg_escape_string » PHP Manual PostgreSQL 関数 テキスト型フィールドに挿入す ... ラルをエスケープする 説明 pg_escape_literal ( PgSql\Connection $connection = ? , string $data ): string pg_escape ... QL 8.4 より前のバージョンでも使えます。 パラメータ connection PgSql\Connection クラスのインスタンス。 connection ... を文字列で返します。 変更履歴 バージョン 説明 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを期待す ... , テキスト , 挿入 , リテラル , literal , string , connection , 接続 ...
https://man.plustar.jp/php/function.pg-escape-literal.html - [similar]
非同期クエリの結果を取得する 4125
« pg_get_pid pg_host » PHP Manual PostgreSQL 関数 非同期クエリの結果を取得する pg_get_result (PH ... 期クエリの結果を取得する 説明 pg_get_result ( PgSql\Connection $connection ): PgSql\Result | false pg_get_result( ... するには、 pg_get_result() を使用します。 パラメータ connection PgSql\Connection クラスのインスタンス。 戻り値 PgS ... のバージョンでは、 リソース を返していました。 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを期待す ... blisher" ) or die( "Could not connect" ); if (! pg_connection_busy ( $dbconn )) { pg_send_query ( $dbconn , "sel ...
https://man.plustar.jp/php/function.pg-get-result.html - [similar]
4125
« リソース型 Stomp 関数 » PHP Manual Stomp 例 例 例1 オブジェクト指向型 <?php $queue = '/queue/f ... oo' ; $msg = 'bar' ; /* connection */ try { $stomp = new Stomp ( 'tcp://localhost:616 ... 13' ); } catch( StompException $e ) { die( 'Connection failed: ' . $e -> getMessage ()); } /* send a mess ... s received */ $stomp -> ack ( $frame ); } /* close connection */ unset( $stomp ); ?> 上の例の出力は、 たとえば以 ... き型 <?php $queue = '/queue/foo' ; $msg = 'bar' ; /* connection */ $link = stomp_connect ( 'ssl://localhost:61612' ...
https://man.plustar.jp/php/stomp.examples.html - [similar]
LDAP ディレクトリへのバインドを解除する 4103
« ldap_t61_to_8859 LDAP\Connection » PHP Manual LDAP 関数 LDAP ディレクトリへのバインドを解除する ... クトリへのバインドを解除する 説明 ldap_unbind ( LDAP\Connection $ldap ): bool LDAP ディレクトリへのバインドを解除し ... ます。 パラメータ ldap ldap_connect() が返す LDAP\Connection クラスのインスタンス。 戻り値 成功した場合に true ... 変更履歴 バージョン 説明 8.1.0 引数 ldap は、 LDAP\Connection クラスのインスタンスを期待するようになりました。 こ ... にバインドする 関連キーワード: ディレクトリ , 解除 , Connection , unbind , バージョン , クラス , インスタンス , 期 ...
https://man.plustar.jp/php/function.ldap-unbind.html - [similar]
Reads the next frame 4103
« Stomp::hasFrame Stomp::send » PHP Manual Stomp Reads the next frame Stomp::readFrame stomp_rea ... eter was added. 例 例1 オブジェクト指向型 <?php /* connection */ try { $stomp = new Stomp ( 'tcp://localhost:616 ... 13' ); } catch( StompException $e ) { die( 'Connection failed: ' . $e -> getMessage ()); } /* subscribe t ... me */ var_dump ( $stomp -> readFrame ()); /* close connection */ unset( $stomp ); ?> 上の例の出力は、 たとえば以 ... ["body"]=> string(3) "bar" } 例2 手続き型 <?php /* connection */ $link = stomp_connect ( 'ssl://localhost:61612' ...
https://man.plustar.jp/php/stomp.readframe.html - [similar]
4080
« 定義済み定数 CUBRID 関数 » PHP Manual CUBRID 例 例 The following is a simple example that esta ... blishes a connection between PHP and CUBRID. This section will cover th ... r=2> <?php /** * Set server information for CUBRID connection. host_ip is the IP * address where the CUBRID Brok ... * Connect to CUBRID Server. Do not make the actual connection, but * only retain the connection information. The ... reason for not making * the actual connection is to handle transaction more efficiently * in the ...
https://man.plustar.jp/php/cubrid.examples.html - [similar]
Creates a standard backpropagation neural network, which is not fully connected ... 4080
« fann_create_shortcut fann_create_sparse » PHP Manual Fann 関数 Creates a standard backpropagat ... layer sizes 説明 fann_create_sparse_array ( float $connection_rate , int $num_layers , array $layers ): resource ... onnected using an array of layer sizes. パラメータ connection_rate The connection rate controls how many connect ... ions there will be in the network. If the connection rate is set to 1, the network will be fully connec ... ted, but if it is set to 0.5 only half of the connections will be set. A connection rate of 1 will yield th ...
https://man.plustar.jp/php/function.fann-create-sparse-array.html - [similar]
レコードを選択する 4058
« pg_result_status pg_send_execute » PHP Manual PostgreSQL 関数 レコードを選択する pg_select (PH ... select — レコードを選択する 説明 pg_select ( PgSql\Connection $connection , string $table_name , array $conditio ... スケープ/検証する処理を行うことなどです。 パラメータ connection PgSql\Connection クラスのインスタンス。 table_name ... 合に false を返します 変更履歴 バージョン 説明 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを期待す ... 択 , flags , conditions , パラメータ , エスケープ , connection , 配列 , convert , Connection ...
https://man.plustar.jp/php/function.pg-select.html - [similar]
Acknowledges consumption of a message 4058
« Stomp::abort Stomp::begin » PHP Manual Stomp Acknowledges consumption of a message Stomp::ack ... 向型 <?php $queue = '/queue/foo' ; $msg = 'bar' ; /* connection */ try { $stomp = new Stomp ( 'tcp://localhost:616 ... 13' ); } catch( StompException $e ) { die( 'Connection failed: ' . $e -> getMessage ()); } /* send a mess ... tion */ $stomp -> unsubscribe ( $queue ); /* close connection */ unset( $stomp ); ?> 例2 手続き型 <?php $queue = ... '/queue/foo' ; $msg = 'bar' ; /* connection */ $link = stomp_connect ( 'ssl://localhost:61612' ...
https://man.plustar.jp/php/stomp.ack.html - [similar]
Creates a standard backpropagation neural network, which is not fully connected 4036
« fann_create_sparse_array fann_create_standard_array » PHP Manual Fann 関数 Creates a standard ... t fully connected 説明 fann_create_sparse ( float $connection_rate , int $num_layers , int $num_neurons1 , int $ ... network, which is not fully connected. パラメータ connection_rate The connection rate controls how many connect ... ions there will be in the network. If the connection rate is set to 1, the network will be fully connec ... ted, but if it is set to 0.5 only half of the connections will be set. A connection rate of 1 will yield th ...
https://man.plustar.jp/php/function.fann-create-sparse.html - [similar]