PHP code example of mops1k / minecraft-rcon

1. Go to this page and download the library: Download mops1k/minecraft-rcon library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mops1k / minecraft-rcon example snippets



use MinecraftRcon\Rcon;
use MinecraftRcon\RconExceptionInterface;

 'password'
    );

    echo $rcon->send('time set 12')->getResponse(Rcon::RESPONSE_FORMATTED);
} catch (RconExceptionInterface $rconException) {
    echo $rconException->getMessage();
}