用户890104 / rcon-client
用PHP编写的GoldSrc RCON客户端
v0.1.1
2016-09-15 14:17 UTC
Requires
- php-64bit: >=5.6.0
This package is auto-updated.
Last update: 2024-09-13 06:12:26 UTC
README
用PHP编写的GoldSrc RCON客户端
用法
<?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());