PHP 8 Library for Nex Protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.5 KiB

5 months ago
# nex-php
5 months ago
PHP 8 Library for Nex Protocol
## Usage
```
composer require yggverse/nex
```
## Client
PHP interface for Nex protocol queries
``` php
5 months ago
$client = new \Yggverse\Nex\Client;
5 months ago
```
5 months ago
#### Client::request
5 months ago
5 months ago
Request data from URL | URI if constructed by URL
5 months ago
``` php
var_dump(
5 months ago
$client->request(
'nex://nightfall.city/nex/'
)
5 months ago
);
```
5 months ago
#### Client::setHost
#### Client::getHost
#### Client::setPort
#### Client::getPort
#### Client::setPath
#### Client::getPath
#### Client::setQuery
#### Client::getQuery
#### Client::getOptions
#### Client::setOptions
## Server
Build interactive server instance to listen Nex protocol connections!
``` php
$server = new \Yggverse\Nex\Server;
```
Provide optional `host`, `port` and `size` arguments in constructor or use available setters after object initiation.
``` php
5 months ago
$server = new \Yggverse\Nex\Server('127.0.0.1', 1900);
```
#### Server::setHost
#### Server::getHost
#### Server::setPort
#### Server::getPort
#### Server::setSize
#### Server::getSize
#### Server::setLive
#### Server::getLive
#### Server::start
Run server object using this method.
Define handler function as the argument to process application logic dependent of client request.
``` php
$server->start(
function (
string $request,
string $connect
) {
printf(
'connection: %s request: %s',
$connect,
$request
);
}
);
```
#### Server::stop
Stop server instance.
Same to `Server::setLive(false)`