検索

phrase: max: clip:
target: order:
Results of 441 - 450 of about 1938 for IF (0.046 sec.)
Acknowledges consumption of a message 2552
« Stomp::abort Stomp::begin » PHP Manual Stomp Acknowledges consumption of a message Stomp::ack ... * read a frame */ $frame = $stomp -> readFrame (); if ( $frame -> body === $msg ) { /* acknowledge that ... 'ssl://localhost:61612' ); /* check connection */ if (! $link ) { die( 'Connection failed: ' . stomp_co ... ad a frame */ $frame = stomp_read_frame ( $link ); if ( $frame [ 'body' ] === $msg ) { /* acknowledge th ...
https://man.plustar.jp/php/stomp.ack.html - [similar]
ZIP ファイルアーカイブをオープンする 2552
« ZipArchive::locateName ZipArchive::registerCancelCallback » PHP Manual ZipArchive ZIP ファイル ... w ZipArchive ; $res = $zip -> open ( 'test.zip' ); if ( $res === TRUE ) { echo '成功' ; $zip -> extractT ... zip -> open ( 'test.zip' , ZipArchive :: CREATE ); if ( $res === TRUE ) { $zip -> addFromString ( 'test. ... RWRITE ); /* 空のファイルに切り詰めても無効です */ if ( $res === TRUE ) { $zip -> addFile ( 'data.txt' , ...
https://man.plustar.jp/php/ziparchive.open.html - [similar]
The Event class 2523
« Constructing signal events Event::add » PHP Manual Event The Event class The Event class (PECL ... allback which is called when event becomes active. If event is configured persistent , it remains pendin ... g. If it is not persistent, it stops being pending when ... Indicates that the event should be edge-triggered, if the underlying event base backend supports edge-tr ...
https://man.plustar.jp/php/class.event.html - [similar]
The Swoole\Connection\Iterator class 2523
« Swoole\Client::wakeup Swoole\Connection\Iterator::count » PHP Manual Swoole The Swoole\Connect ... . Swoole\Connection\Iterator::offsetExists — Check if offet exists. Swoole\Connection\Iterator::offsetGe ... erator::offsetSet — Assign a Connection to the specified offset. Swoole\Connection\Iterator::offsetUnset ... iterator Swoole\Connection\Iterator::valid — Check if current position is valid. 関連キーワード: Connect ...
https://man.plustar.jp/php/class.swoole-connection-iterator.html - [similar]
Linearizes data within buffer and returns it's contents as a string 2523
« EventBuffer::prependBuffer EventBuffer::read » PHP Manual EventBuffer Linearizes data within b ... contiguous and occupying the same chunk of memory. If size is negative, the function linearizes the enti ... equired to be contiguous within the buffer. 戻り値 If size is greater than the number of bytes in the bu ... ring. 参考 EventBuffer::copyout() - Copies out specified number of bytes from the front of the buffer Ev ... entBuffer::drain() - Removes specified number of bytes from the front of the buffer wi ...
https://man.plustar.jp/php/eventbuffer.pullup.html - [similar]
Adds a server alias to the HTTP server object 2523
« EventHttp::accept EventHttp::bind » PHP Manual EventHttp Adds a server alias to the HTTP serve ... socket_create ( AF_INET , SOCK_STREAM , SOL_TCP ); if (! $http -> bind ( "127.0.0.1" , 8088 )) { exit( " ... bind(1) failed\n" ); }; if (! $http -> addServerAlias ( "local.net" )) { exit ...
https://man.plustar.jp/php/eventhttp.addserveralias.html - [similar]
PHP による HTTP 認証 2523
« 機能 クッキー(Cookies) » PHP Manual 機能 PHP による HTTP 認証 PHP による HTTP 認証 header() 関 ... の例を以下に示します。 例1 Basic HTTP 認証の例 <?php if (!isset( $_SERVER [ 'PHP_AUTH_USER' ])) { header ( ... array( 'admin' => 'mypass' , 'guest' => 'guest' ); if (empty( $_SERVER [ 'PHP_AUTH_DIGEST' ])) { header ... れるテキスト' ); } // PHP_AUTH_DIGEST 変数を精査する if (!( $data = http_digest_parse ( $_SERVER [ 'PHP_AU ... [ 'cnonce' ]. ':' . $data [ 'qop' ]. ':' . $A2 ); if ( $data [ 'response' ] != $valid_response ) die( ' ...
https://man.plustar.jp/php/features.http-auth.html - [similar]
Performs a C type cast 2523
« FFI::arrayType FFI::cdef » PHP Manual FFI Performs a C type cast FFI::cast (PHP 7 >= 7.4.0, PH ... e same C data structure, but is associated with a different type. The resulting object does not own the ... ptr must survive the result. The C type may be specified as a string with any valid C type declaration o ... r as FFI\CType object, created before. If this method is called statically, it must only use ... predefined C type names (e.g. int , char , etc.); if the method is called as instance method, any type ...
https://man.plustar.jp/php/ffi.cast.html - [similar]
Loads C declarations from a C header file 2523
« FFI::isNull FFI::memcmp » PHP Manual FFI Loads C declarations from a C header file FFI::load ( ... ations from a C header file. It is possible to specify shared libraries that should be loaded, using spe ... #define statement for the FFI_LIB variable to specify the library it exposes. If it is a system library ... e is required, e.g.: #define FFI_LIB "libc.so.6" . If it is a custom library, a relative path is require ...
https://man.plustar.jp/php/ffi.load.html - [similar]
基本的な使用法 2523
« 例 FTP 関数 » PHP Manual 例 基本的な使用法 基本的な使用法 例1 FTP の例 <?php // 接続を確立する ... r_name , $ftp_user_pass ); // 接続できたか確認する if ((! $ftp ) || (! $login_result )) { echo "FTP conn ... file , FTP_BINARY ); // アップロード状況を確認する if (! $upload ) { echo "FTP upload has failed!" ; } e ...
https://man.plustar.jp/php/ftp.examples-basic.html - [similar]