Giter Club home page Giter Club logo

nex-php's Introduction

nex-php

PHP 8 Library for NEX Protocol (see also nps-php)

Usage

composer require yggverse/nex

Client

PHP interface for NEX protocol queries

$client = new \Yggverse\Nex\Client;

Client::request

Request data from URL | URI if constructed by URL

var_dump(
    $client->request(
        'nex://nightfall.city/nex/'
    )
);

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!

$server = new \Yggverse\Nex\Server;

Provide optional host, port and size arguments in constructor or use available setters after object initiation.

$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.

$server->start(
    function (
        string $request,
        string $connect
    ): ?string
    {
        printf(
            'connection: %s request: %s',
            $connect,
            $request
        );

        return null; // null|string response
    }
);

Server::stop

Stop server instance.

Same to Server::setLive(false)

Integrations

  • next - PHP 8 Server for NEX Protocol

nex-php's People

Contributors

d47081 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.