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
Requires
- php-64bit: >=5.6.0
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());