Join 4,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-25.2.0 | composer require openswoole/core:22.1.5
OpenSwoole Async HTTP client is a high performance and aync HTTP client supports Http-Chunk, Keep-Alive, form-data.
OpenSwoole\Http\Client::\_\_construct ( string $host [, string $port [, boolean $ssl ]] )
Alias: swoole_http_client::__construct
Example:
void OpenSwoole\Http\Client::set ( array $settings )
Alias: swoole_http_client::set
Set the parameters for the http client.
Example:
void OpenSwoole\Http\Client::setMethod ( string $method )
Alias: swoole_http_client::setMethod
Set the http request method.
Example:
void OpenSwoole\Http\Client::setHeaders ( array $headers )
Alias: swoole_http_client::setHeaders
Set the http request headers.
void OpenSwoole\Http\Client::setCookies ( array $cookies )
Alias: swoole_http_client::setCookies
Set the http request cookies.
void OpenSwoole\Http\Client::setData ( string $data )
Alias: swoole_http_client::setData
Set the http request body data. The http method will be changed to be POST.
void OpenSwoole\Http\Client::addFile ( string $path , string $name [, string $type [, string $filename [, string $offset ]]] )
Alias: swoole_http_client::addFile
Add files to the post form.
Example:
void OpenSwoole\Http\Client::on ( string $event_name , callable $callback )
Alias: swoole_http_client::on
Register callback function by event name.
void OpenSwoole\Http\Client::get ( string $path , callable $callback )
Alias: swoole_http_client::get
Send GET http request to the remote server.
Example:
void OpenSwoole\Http\Client::post ( string $path , string $data , callable $callback )
Alias: swoole_http_client::post
Send POST http request to the remote server.
Example:
void OpenSwoole\Http\Client::upgrade ( string $path , string $callback )
Alias: swoole_http_client::upgrade
Upgrade to websocket protocol.
void OpenSwoole\Http\Client::execute ( string $path , string $callback )
Alias: swoole_http_client::execute
Send the HTTP request after setting the parameters.
void OpenSwoole\Http\Client::download ( string $path , string $file , callable $callback [, int $offset ] )
Alias: swoole_http_client::download
Download file from the remote server.
Example:
void OpenSwoole\Http\Client::push ( string $data [, string $opcode [, string $finish ]] )
Alias: swoole_http_client::push
Push data to websocket client.
boolean OpenSwoole\Http\Client::isConnected ( void )
Class alias: swoole_http_client::isConnected
Check if the http connection is connected.
void OpenSwoole\Http\Client::close ( void )
Class alias: swoole_http_client::close
Close the http connection.