hdata/hdata

Interact with HData servers using PHP

Maintainers

Package info

github.com/HData-org/php-hdata

Homepage

pkg:composer/hdata/hdata

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.1 2021-05-13 20:36 UTC

This package is auto-updated.

Last update: 2026-03-20 22:37:07 UTC


README

Interact with HData servers using PHP

Latest Version on Packagist Total Downloads

See https://github.com/HData-org/hdata/tree/master/server for creating an HData server to connect this package with.

Installation

You can install the package via composer:

composer require hdata/hdata

Usage

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();

License

The Apache License 2. Please see License File for more information.

PHP Package Boilerplate

This package was generated using the PHP Package Boilerplate by Beyond Code.