user890104 / rcon-client
GoldSrc RCON client written in PHP
v0.1.1
2016-09-15 14:17 UTC
Requires
- php-64bit: >=5.6.0
This package is auto-updated.
Last update: 2025-01-13 06:53:32 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());