有人可以帮我从 xPaw 的这个 Minecraft Query 中获取主机名。
这是回购:https ://github.com/xPaw/PHP-Minecraft-Query
我相信我在 GetInfo() 之后添加了一些东西。
<?php
require('MinecraftQuery.class.php');
$Query = new MinecraftQuery( );
try
{
$Query->Connect( 'localhost', 25565 );
print_r( $Query->GetInfo( ));
}
catch( MinecraftQueryException $e )
{
echo $e->getMessage( );
}
?>