user890104/rcon-client

GoldSrc RCON client written in PHP

Installs: 54

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/user890104/rcon-client

v0.1.1 2016-09-15 14:17 UTC

This package is auto-updated.

Last update: 2025-12-13 08:49:18 UTC


README

GoldSrc RCON client written in PHP

Usage

<?php
require __DIR__ . '/vendor/autoload.php';

use User890104\RconClient;

$rcon = new RconClient('example.com', '123456');

// using the text protocol
echo $rcon->exec('stats');

// using the binary protocol
var_dump($rcon->getInfo());