-1

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( );
    }
?>
4

1 に答える 1

0

https://github.com/xPaw/PHP-Minecraft-Query/blob/master/MinecraftQuery.class.php#L105を見ると、次のことができるはずです:-

$info = $Query->GetInfo();
echo $info['hostname'];
于 2013-10-28T15:06:19.863 に答える