検索

phrase: max: clip:
target: order:
Results of 631 - 640 of about 1938 for IF (0.087 sec.)
署名済みの公開鍵とチャレンジを検証する 2346
« openssl_spki_new openssl_verify » PHP Manual OpenSSL 関数 署名済みの公開鍵とチャレンジを検証す ... る openssl_spki_verify (PHP 5 >= 5.6.0, PHP 7, PHP 8) openssl_spki_verif ... の公開鍵とチャレンジを検証する 説明 openssl_spki_verify ( string $spki ): bool 与えられた公開鍵とチャレン ... レベルのエラーが発生します。 例 例1 openssl_spki_verify() の例 既存の署名済み公開鍵とチャレンジを検証しま ... = openssl_spki_new ( $pkey , 'challenge string' ); if ( openssl_spki_verify ( preg_replace ( '/SPKAC=/' ...
https://man.plustar.jp/php/function.openssl-spki-verify.html - [similar]
サーバー上で実行中のトランザクションの状態を返す 2346
« pg_trace pg_tty » PHP Manual PostgreSQL 関数 サーバー上で実行中のトランザクションの状態を返す ... ect" ); $stat = pg_transaction_status ( $dbconn ); if ( $stat === PGSQL_TRANSACTION_UNKNOWN ) { echo 'Co ... nnection is bad' ; } else if ( $stat === PGSQL_TRANSACTION_IDLE ) { echo 'Conne ...
https://man.plustar.jp/php/function.pg-transaction-status.html - [similar]
ユーザー定義のエラーハンドラ関数を設定する 2346
« restore_exception_handler set_exception_handler » PHP Manual エラー処理関数 ユーザー定義のエラ ... ndler ( $errno , $errstr , $errfile , $errline ) { if (!( error_reporting () & $errno )) { // error_repo ... ト用関数 function scale_by_log ( $vect , $scale ) { if (! is_numeric ( $scale ) || $scale <= 0 ) { trigge ... ed, you used: scale = $scale " , E_USER_ERROR ); } if (! is_array ( $vect )) { trigger_error ( "Incorrec ... mp = array(); foreach( $vect as $pos => $value ) { if (! is_numeric ( $value )) { trigger_error ( "Value ...
https://man.plustar.jp/php/function.set-error-handler.html - [similar]
接続したソケットからデータを受信する 2346
« socket_read socket_recvfrom » PHP Manual ソケット 関数 接続したソケットからデータを受信する so ... socket_create ( AF_INET , SOCK_STREAM , SOL_TCP ); if ( $socket === false ) { echo "socket_create() fail ... et_connect ( $socket , $address , $service_port ); if ( $result === false ) { echo "socket_connect() fai ... ing response:\n\n" ; $buf = 'This is my buffer.' ; if ( false !== ( $bytes = socket_recv ( $socket , $bu ... 8:56:36 GMT Server: Apache/2.2.3 (Red Hat) Last-Modified: Tue, 15 Nov 2005 13:24:10 GMT ETag: "b80f4-1b6 ...
https://man.plustar.jp/php/function.socket-recv.html - [similar]
ソケットエラーの内容を文字列として返す 2346
« socket_shutdown socket_write » PHP Manual ソケット 関数 ソケットエラーの内容を文字列として返す ... ージを返します。 例 例1 socket_strerror() の例 <?php if ( false == ( $socket = @ socket_create ( AF_INET , ... socket_strerror ( socket_last_error ()) . "\n" ; } if ( false == (@ socket_bind ( $socket , '127.0.0.1' ...
https://man.plustar.jp/php/function.socket-strerror.html - [similar]
残りのストリームを文字列に読み込む 2346
« stream_filter_remove stream_get_filters » PHP Manual ストリーム 関数 残りのストリームを文字列に ... なりました。 例 例1 stream_get_contents() の例 <?php if ( $stream = fopen ( 'http://www.example.com' , 'r' ... ents ( $stream , - 1 , 10 ); fclose ( $stream ); } if ( $stream = fopen ( 'http://www.example.net' , 'r' ...
https://man.plustar.jp/php/function.stream-get-contents.html - [similar]
notification コンテキストパラメータ用のコールバック関数 2346
« stream_isatty stream_register_wrapper » PHP Manual ストリーム 関数 notification コンテキストパ ... ラメータ用のコールバック関数 stream_notification_callback (PHP 5 >= 5.2.0, PHP 7, PHP 8) str ... eam_notification_callback — notification コンテキストパラメー ... タ用のコールバック関数 説明 stream_notification_callback ( int $notification_code , int $se ... イベント発生時にコールされる callable 関数です。 notification context parameter が使用します。 注意 : これ ...
https://man.plustar.jp/php/function.stream-notification-callback.html - [similar]
ストリームにタイムアウトを設定する 2346
« stream_set_read_buffer stream_set_write_buffer » PHP Manual ストリーム 関数 ストリームにタイム ... <?php $fp = fsockopen ( "www.example.com" , 80 ); if (! $fp ) { echo "開けません\n" ; } else { fwrite ( ... fo = stream_get_meta_data ( $fp ); fclose ( $fp ); if ( $info [ 'timed_out' ]) { echo 'Connection timed ...
https://man.plustar.jp/php/function.stream-set-timeout.html - [similar]
ファイルの最終アクセス時刻および最終更新日をセットする 2346
« tmpfile umask » PHP Manual ファイルシステム 関数 ファイルの最終アクセス時刻および最終更新日をセ ... 、nullable になりました。 例 例1 touch() の例 <?php if ( touch ( $filename )) { echo $filename . ' modifi ... time' ; } else { echo 'Sorry, could not change modification time of ' . $filename ; } ?> 例2 touch() で ... す $time = time () - 3600 ; // ファイルを作成します if (! touch ( 'some_file.txt' , $time )) { echo 'おっ ...
https://man.plustar.jp/php/function.touch.html - [similar]
Add a high priority task to run in parallel 2346
« GearmanClient::addTaskBackground GearmanClient::addTaskHighBackground » PHP Manual GearmanClie ... いる一意な ID。 戻り値 A GearmanTask object or false if the task could not be added. 例 例1 A high priorit ... dTask ( "reverse" , "Hello World!" , null , "3" ); if (! $gmc -> runTasks ()) { echo "ERROR " . $gmc -> ...
https://man.plustar.jp/php/gearmanclient.addtaskhigh.html - [similar]