• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

thedudeguy/PHP-Minecraft-Query: A simple PHP class to connect to a minecraft ser ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

thedudeguy/PHP-Minecraft-Query

开源软件地址(OpenSource Url):

https://github.com/thedudeguy/PHP-Minecraft-Query

开源编程语言(OpenSource Language):

PHP 100.0%

开源软件介绍(OpenSource Introduction):

PHP-Minecraft-Query

A simple PHP class to connect to a minecraft server and get data about the server using the Query Protocol.

To connect to a server, Query must be activated on the minecraft server by setting enable-query=true in the server's server.properties.

This script connects to the server over UDP.

Examples

As a Regular PHP Library:

require_once('query.php');

$server = new Query('some.minecraftserver.com');
//or new Query('some.minecraftserver.com', $port, $timeout);

if ($server->connect())
{
  $info = $server->get_info();
  print_r($info);
}

As a CodeIgniter Library:

$settings = array(
  'host' => 'some.minecraftserver.com', //required
  'port' => 25565,  //optional
  'timeout' = 3,    //optional
);
$this->load->library('query', $settings);

$this->query->connect();

if ($this->query->is_connected()) {
  $info = $this->query->get_info();
  print_r($info);
}

get_info() result

Result is an array: here is the dump:

Array
(
    [hostname] => Server MOTD
    [gametype] => SMP
    [game_id] => MINECRAFT
    [version] => 1.7.2
    [plugins] => 
    [map] => world
    [numplayers] => 2
    [maxplayers] => 20
    [hostport] => 25565
    [hostip] => 127.0.1.1
    [players] => Array
    (
      [0] => player1
      [1] => player2
    )

)



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
SharpMC/SharpMC: SharpMC - A MineCraft server in C#发布时间:2022-08-17
下一篇:
Cassiobsk8/Industrial_Renewal: Minecraft mod发布时间:2022-08-17
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap