Interact with HData servers using PHP
See https://github.com/HData-org/hdata/tree/master/server for creating an HData server to connect this package with.
You can install the package via composer:
composer require hdata/hdata
Note: Be sure to have the php_openssl extension enabled.
use HData\HData;
$host = "127.0.0.1";
$port = 8888;
$hdata = new HData\HData($host, $port);
echo $hdata->getStatus();
$hdata->disconnect();
The Apache License 2. Please see License File for more information.
This package was generated using the PHP Package Boilerplate by Beyond Code.