-1

有人可以帮我从 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( );
    }
?>
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 回答