xPaw Minecraft服务器查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xPaw Minecraft服务器查询相关的知识,希望对你有一定的参考价值。
有人可以帮我从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( );
}
?>
答案
看看https://github.com/xPaw/PHP-Minecraft-Query/blob/master/MinecraftQuery.class.php#L105,你应该能够: -
$info = $Query->GetInfo();
echo $info['hostname'];
以上是关于xPaw Minecraft服务器查询的主要内容,如果未能解决你的问题,请参考以下文章
《我的世界》minecraft使用bukkit怎么创建服务器?