user890104/rcon-client

GoldSrc RCON client written in PHP

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

This package is auto-updated.

Last update: 2024-04-13 05:24:36 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());