検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 225 for link (0.006 sec.)
はじめに 5214
« Eio インストール/設定 » PHP Manual Eio はじめに はじめに この拡張モジュールは、非同期 POSIX I/ ... クエスト <?php // $filename のシンボリックリンクを $link に作るリクエスト eio_symlink ( $filename , $link ) ... ; ?> この書き方だと、 eio_rename() のほうが eio_symlink() よりも先に処理されてしまう可能性があります。 そう ... ならないようにするには、 eio_rename() を eio_symlink() のコールバックの中から呼びます。 例2 リクエストコ ... ックからのリクエストの呼び出し <?php function my_symlink_done ( $filename , $result ) { // $filename を $ne ...
https://man.plustar.jp/php/intro.eio.html - [similar]
リソース型の一覧 5214
« その他の予約語の一覧 利用できるフィルタのリスト » PHP Manual 付録 リソース型の一覧 リソース型の ... ) , ibase_blob_info() ibase_blob_close() interbase link ibase_connect() ibase_query() , ibase_prepare() , ... close() Interbase データベースへのリンク interbase link persistent ibase_pconnect() ibase_query() , ibase_ ... mmit() ibase_rollback() Interbase transaction ldap link ldap_connect() , ldap_search() ldap_count_entries( ... ) mailparse_msg_parse() mailparse_msg_free() mysql link mysql_connect() mysql_affected_rows() , mysql_crea ...
https://man.plustar.jp/php/resource.html - [similar]
シンボリックリンクのグループ所有権を変更する 5131
« is_writeable lchown » PHP Manual ファイルシステム 関数 シンボリックリンクのグループ所有権を変更 ... ンクのグループの変更 <?php $target = 'output.php' ; $link = 'output.html' ; symlink ( $target , $link ); lch ... grp ( $link , 8 ); ?> 注意 注意 : この関数では、 リモートファイ ...
https://man.plustar.jp/php/function.lchgrp.html - [similar]
LDAP ページネーション制御情報を送信する 5131
« ldap_control_paged_result_response ldap_count_entries » PHP Manual LDAP 関数 LDAP ページネーシ ... 下さい。 説明 ldap_control_paged_result ( resource $link , int $pagesize , bool $iscritical = false , strin ... ージサイズやクッキーなど) を送信します。 パラメータ link ldap_connect() が返す LDAP リソース。 pagesize ペー ... 例1 LDAP ページネーション <?php // $ds is a valid link identifier (see ldap_connect) ldap_set_option ( $d ... 例2 LDAP ページネーション <?php // $ds is a valid link identifier (see ldap_connect) ldap_set_option ( $d ...
https://man.plustar.jp/php/function.ldap-control-paged-result.html - [similar]
Closes stomp connection 5131
« Stomp::__construct Stomp::error » PHP Manual Stomp Closes stomp connection Stomp::__destruct s ... p::__destruct () 手続き型: stomp_close ( resource $link ): bool Closes a previously opened connection. パラ ... メータ link 手続き型のみ: stomp_connect() が返す stomp リンク ...
https://man.plustar.jp/php/stomp.destruct.html - [similar]
SQL 文中で用いる文字列の特殊文字をエスケープする 5090
« mysql_query mysql_result » PHP Manual MySQL 関数 SQL 文中で用いる文字列の特殊文字をエスケープす ... cape_string ( string $unescaped_string , resource $link_identifier = NULL ): string 現在の接続の文字セット ... パラメータ unescaped_string エスケープされる文字列。 link_identifier MySQL 接続。指定されない場合、 mysql_co ... 純な mysql_real_escape_string() の例 <?php // 接続 $link = mysql_connect ( 'mysql_host' , 'mysql_user' , 'm ... p on line 5 Warning: mysql_real_escape_string(): A link to the server could not be established in /this/te ...
https://man.plustar.jp/php/function.mysql-real-escape-string.html - [similar]
Indicates whether or not there is a frame ready to read 5090
« Stomp::getSessionId Stomp::readFrame » PHP Manual Stomp Indicates whether or not there is a fr ... ame (): bool 手続き型: stomp_has_frame ( resource $link ): bool Indicates whether or not there is a frame ... ready to read. パラメータ link 手続き型のみ: stomp_connect() が返す stomp リンク ...
https://man.plustar.jp/php/stomp.hasframe.html - [similar]
指定したステートメントのパラメータ数を返す 5048
« mysqli_stmt::$num_rows mysqli_stmt::prepare » PHP Manual mysqli_stmt 指定したステートメントのパ ... ます */ $mysqli -> close (); ?> 例2 手続き型 <?php $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... rror ()); exit(); } if ( $stmt = mysqli_prepare ( $link , "SELECT Name FROM Country WHERE Name=? OR Code=? ... ( $stmt ); } /* 接続を閉じます */ mysqli_close ( $link ); ?> 上の例の出力は以下となります。 Statement has ...
https://man.plustar.jp/php/mysqli-stmt.param-count.html - [similar]
Open a persistent connection to a CUBRID server 5007
« cubrid_pconnect_with_url cubrid_prepare » PHP Manual CUBRID 関数 Open a persistent connection ... he function would first try to find a (persistent) link that's already open with the same host, port, dbna ... hen the execution of the script ends. Instead, the link will remain open for future use ( cubrid_close() o ... r cubrid_disconnect() will not close links established by cubrid_pconnect() ). This type of ...
https://man.plustar.jp/php/function.cubrid-pconnect.html - [similar]
イベントが発生した際にコールされるコールバック関数を登録する 5007
« ibase_service_detach ibase_trans » PHP Manual Firebird/InterBase 関数 イベントが発生した際にコ ... の例 <?php function event_handler ( $event_name , $link ) { if ( $event_name == "NEW ORDER" ) { // 新しい注 ... 文を処理します ibase_query ( $link , "UPDATE orders SET status='handled'" ); } else i ... します return false ; } } ibase_set_event_handler ( $link , "event_handler" , "NEW_ORDER" , "DB_SHUTDOWN" ); ...
https://man.plustar.jp/php/function.ibase-set-event-handler.html - [similar]