PHP-Minecraft-Rcon icon indicating copy to clipboard operation
PHP-Minecraft-Rcon copied to clipboard

Simple Rcon class for php.

Results 15 PHP-Minecraft-Rcon issues
Sort by recently updated
recently updated
newest added

require_once "rcon.php"; $host = $host_ST; $port = $port_ST; $password = $password_ST; $timeout = $timeout_ST; use Thedudeguy\Rcon; $rcon = new Rcon($host, $port, $password, $timeout); error_reporting(E_ALL); if($rcon->connect()) echo "+"; else echo "-";...

Hello, i'm currently writing a RCON-PHP-Client and i want to use this rocn.php. But if i'm trying to use it VSCode says at `use Thedudeguy\Rcon;`: _syntax error, unexpected 'use' (T_USE)_...

The error occurred can update this code, I need it very much.

I know this is a known issue, but has there been any progress to getting packets larger than 4096 working? https://github.com/xPaw/PHP-Source-Query/blob/master/SourceQuery/SourceRcon.php has it done, but I like the way your...