1
0
Fork 0
This repository has been archived on 2020-07-27. You can view files and clone it, but cannot push or open issues/pull-requests.
minecraft-query/example/query.php

14 lines
308 B
PHP

<?php
// run 'composer install' in parent directory for this to work
require __DIR__. '/../vendor/autoload.php';
$minecraft = new \SandFoxIM\Minecraft\ServerQuery($argv[1], $argv[2], 2);
echo "Basic info:\n";
var_export($minecraft->getStatus());
echo "Full info:\n";
var_export($minecraft->getRules());