xPaw によるこの Minecraft クエリからホスト名だけを取得するのを手伝ってくれる人がいますか?
リポジトリは次のとおりです: 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( );
}
?>