Results of 1 - 10 of about 53 for sock (0.003 sec.)
- 例 13440
- « ストリームのエラー ストリームラッパーとして登録するクラスの例 » PHP Manual ストリーム 例 例 目
...
foo" と "bar" というフォーム要素が含まれます。 */ $sock = fsockopen ( "ssl://secure.example.com" , 443 , $ ...
errno , $errstr , 30 ); if (! $sock ) die( " $errstr ( $errno )\n" ); $data = "foo=" . ...
" ) . "&bar=" . urlencode ( "Barの値" ); fwrite ( $sock , "POST /form_action.php HTTP/1.0\r\n" ); fwrite ( ...
$sock , "Host: secure.example.com\r\n" ); fwrite ( $sock ...
-
https://man.plustar.jp/php/stream.examples.html
- [similar]
- 定義済み定数 11728
- « リソース型 Swoole 関数 » PHP Manual Swoole 定義済み定数 定義済み定数 以下の定数が定義されていま
...
THREAD ( int ) SWOOLE_PROCESS ( int ) SWOOLE_IPC_UNSOCK ( int ) SWOOLE_IPC_MSGQUEUE ( int ) SWOOLE_IPC_PRE ...
EMPTIVE ( int ) SWOOLE_SOCK_TCP ( int ) SWOOLE_SOCK_TCP6 ( int ) SWOOLE_SOCK_U ...
DP ( int ) SWOOLE_SOCK_UDP6 ( int ) SWOOLE_SOCK_UNIX_DGRAM ( int ) SWOOLE ...
_SOCK_UNIX_STREAM ( int ) SWOOLE_TCP ( int ) SWOOLE_TCP6 ...
-
https://man.plustar.jp/php/swoole.constants.html
- [similar]
- 例 11133
- « 定義済み定数 ソケットのエラー » PHP Manual ソケット 例 例 例1 ソケットの例: 簡易 TCP/IP サーバ
...
$address = '192.168.1.53' ; $port = 10000 ; if (( $sock = socket_create ( AF_INET , SOCK_STREAM , SOL_TCP ...
)) === false ) { echo "socket_create() failed: reason: " . socket_strerror ( s ...
ocket_last_error ()) . "\n" ; } if ( socket_bind ( $sock , $address , $port ) === false ) { ...
echo "socket_bind() failed: reason: " . socket_strerror ( soc ...
-
https://man.plustar.jp/php/sockets.examples.html
- [similar]
- ソケットに名前をバインドする 9942
- « socket_addrinfo_lookup socket_clear_error » PHP Manual ソケット 関数 ソケットに名前をバインドす
...
る socket_bind (PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8) socke ...
t_bind — ソケットに名前をバインドする 説明 socket_bind ( Socket $socket , string $address , int $p ...
ort = 0 ): bool address で指定した名前を socket で指定したソケットにバインドします。 これは、 so ...
cket_connect() あるいは socket_listen() を使用して接続が確立される前に行われます ...
-
https://man.plustar.jp/php/function.socket-bind.html
- [similar]
- 接続された、区別できないソケットストリームの組を作成する 9868
- « stream_socket_get_name stream_socket_recvfrom » PHP Manual ストリーム 関数 接続された、区別でき
...
ないソケットストリームの組を作成する stream_socket_pair (PHP 5 >= 5.1.0, PHP 7, PHP 8) stream_socke ...
できないソケットストリームの組を作成する 説明 stream_socket_pair ( int $domain , int $type , int $protocol ) ...
: array | false stream_socket_pair() は、互いに接続されており区別できない ソケ ...
るいは STREAM_PF_UNIX type 使用する接続の型。 STREAM_SOCK_DGRAM 、 STREAM_SOCK_RAW 、 STREAM_SOCK_RDM 、 STR ...
-
https://man.plustar.jp/php/function.stream-socket-pair.html
- [similar]
- Construct a Swoole server. 9570
- « Swoole\Server::connection_list Swoole\Server::defer » PHP Manual Swoole\Server Construct a Swo
...
ng $host , int $port = ? , integr $mode = ? , int $sock_type = ? ) パラメータ host port mode sock_type 関連 ...
ruct , server , Server , construct , host , type , sock , mode , int ...
-
https://man.plustar.jp/php/swoole-server.construct.html
- [similar]
- Create Swoole sync or async TCP/UDP client, with or without SSL. 9272
- « Swoole\Client::connect Swoole\Client::__destruct » PHP Manual Swoole\Client Create Swoole sync
...
SSL. 説明 public Swoole\Client::__construct ( int $sock_type , int $is_async = ? ) パラメータ sock_type Th ...
e type of socket: SWOOLE_TCP, SWOOLE_UDP, SWOOLE_ASYNC, SWOOLE_SS ...
ワード: Swoole , SWOOLE , async , type , construct , sock , int , without , Create , public ...
-
https://man.plustar.jp/php/swoole-client.construct.html
- [similar]
- Connect buffer event's file descriptor to given address or UNIX socket 8454
- « EventBufferEvent::close EventBufferEvent::connectHost » PHP Manual EventBufferEvent Connect bu
...
r event's file descriptor to given address or UNIX socket EventBufferEvent::connect (PECL event >= 1.2.6-b ...
r event's file descriptor to given address or UNIX socket 説明 public EventBufferEvent::connect ( string $ ...
en address(optionally with port), or a UNIX domain socket. If socket is not assigned to the buffer event, ...
this function allocates a new socket and makes it non-blocking internally. To resolve ...
-
https://man.plustar.jp/php/eventbufferevent.connect.html
- [similar]
- ソケット(通信時の終端)を作成する 8454
- « socket_create_pair socket_export_stream » PHP Manual ソケット 関数 ソケット(通信時の終端)を作
...
成する socket_create (PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8) soc ...
t_create — ソケット(通信時の終端)を作成する 説明 socket_create ( int $domain , int $type , int $protocol ...
): Socket | false 通信のエンドポイント(終端)と呼ばれること ...
もある Socket クラスのインスタンスを作成し、 返します。典型的な ...
-
https://man.plustar.jp/php/function.socket-create.html
- [similar]
- 接続しているかどうかによらずソケットにメッセージを送信する 8454
- « socket_sendmsg socket_set_block » PHP Manual ソケット 関数 接続しているかどうかによらずソケット
...
にメッセージを送信する socket_sendto (PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8) soc ...
かどうかによらずソケットにメッセージを送信する 説明 socket_sendto ( Socket $socket , string $data , int $le ...
$address , ? int $port = null ): int | false 関数 socket_sendto() は、 アドレス addr の port を使用し、 d ...
ata からソケット socket に length バイトのデータを送信します。 パラメータ ...
-
https://man.plustar.jp/php/function.socket-sendto.html
- [similar]