This is a simple RCON-Client for php.
RCON can be installed via. Composer:
composer require "gries/rcon"
use gries\Rcon\MessengerFactory;
use gries\Rcon\Messenger;
require_once __DIR__.'/vendor/autoload.php';
// setup the messenger
$messenger = MessengerFactory::create('example.com', 25575, 'mypass');
// send a simple message
$response = $messenger->send('list');
echo $response; // a,b,c
// send a message and parse the command via. a callable
$response = $messenger->send('list', function($arg) {
return explode(',', $arg);
});
print_r($response); // ['a', 'b', 'c']
vendor/bin/phpspec run
Feel free to give me feedback/feature-request/bug-reports via. github issues. Or just send me a pull-request :)
For the full copyright and license information, please view the LICENSE file that was distributed with this source code.