2012-04-07 89 views
4

全部使用, 我有一個使用fsockopen來偵測Minecraft服務器的腳本。我想知道是否有方法將其轉換爲使用cURL?PHP ping使用cURL的Minecraft服務器

下面是函數:

function pingserver($host, $port=25565, $timeout=30) { 
//Set up our socket 
$fp = fsockopen($host, $port, $errno, $errstr, $timeout); 
if (!$fp) return false; 

//Send 0xFE: Server list ping 
fwrite($fp, "\xFE"); 

//Read as much data as we can (max packet size: 241 bytes) 
$d = fread($fp, 256); 

//Check we've got a 0xFF Disconnect 
if ($d[0] != "\xFF") return false; 

//Remove the packet ident (0xFF) and the short containing the length of the string 
$d = substr($d, 3); 

//Decode UCS-2 string 
$d = mb_convert_encoding($d, 'auto', 'UCS-2'); 

//Split into array 
$d = explode("\xA7", $d); 

//Return an associative array of values 
return array(
    'motd'  =>  $d[0], 
    'players'  => intval($d[1]), 
    'max_players' => intval($d[2])); 
} 

看來,一個本地服務器,這就是爲什麼我想將它轉化成捲曲這樣我就可以在遠程服務器上運行上運行時,此功能只適用。

+0

這適用於遠程服務器,我只是測試它。 – Jack 2012-04-07 21:11:04

+0

嗯......我得到這個錯誤:'警告:fsockopen()[function.fsockopen]:無法連接到/home/user/public_html/mc.php中的xx.xx.xx.xx:25565(連接被拒絕)在線6' – 2012-04-08 03:19:36

+0

聽起來像你要麼有某種防火牆,要麼更可能連接到一個不好的主機/端口。 – Jack 2012-04-09 20:12:27

回答

3

我意識到你已經解決了你的問題,但我也需要一個命令行Minecraft'ping',所以我將你的PHP代碼移植到一個獨立的Perl腳本中,並且認爲我會在這裏分享它以防其他人需要類似的東西。該腳本僅使用核心模塊,因此它應該可以在安裝了Perl的任何地方工作。

#!/usr/bin/perl 
############################################################################## 
# 
# Script: mcping 
# 
# Author: Grant McLean <[email protected]z> 
# 
# Description: 
# 
# 'ping' a minecraft server to check it's alive 
# 

use strict; 
use warnings; 

use IO::Socket; 
use Pod::Usage; 
use Getopt::Long qw(GetOptions); 
use Encode  qw(decode); 
use Time::HiRes qw(gettimeofday tv_interval); 

my(%opt); 

if(!GetOptions(\%opt, 'help|?')) { 
    pod2usage(-exitval => 1, -verbose => 0); 
} 

pod2usage(-exitstatus => 0, -verbose => 2) if $opt{help}; 

my $target = shift or pod2usage(
    -exitval => 1, -verbose => 0, -message => 'No host specified' 
); 

my $port = 25565; 
if($target =~ /(.*?):(\d+)$/) { 
    $target = $1; 
    $port = $2; 
} 

ping_server($target, $port); 

exit 0; 


sub ping_server { 
    my($host, $port) = @_; 

    my $t0 = [gettimeofday]; 
    my $s = IO::Socket->new(
     Domain => AF_INET, 
     PeerAddr => $host, 
     PeerPort => $port, 
     Proto => 'tcp', 
    ) || die "$!\n"; 

    $s->autoflush(1); 
    print $s "\xFE"; 

    sysread($s, my $resp, 256); 
    my $elapsed = tv_interval($t0); 

    die "Malformed response after connect\n" unless $resp =~ /^\xFF/; 

    substr($resp, 0, 3, ''); 

    $resp = decode('UCS-2', $resp); 

    my($motd, $players, $max_players) = split /\x{A7}/, $resp; 

    print "Msg of the Day: $motd\n" 
     . "Players Online: $players\n" 
     . "Max Players:  $max_players\n"; 
    printf "Ping Time:  %5.3fs\n", $elapsed; 
} 


__END__ 

=head1 NAME 

mcping - 'ping' a minecraft server 

=head1 SYNOPSIS 

    mcping [options] host-or-ip:port 

    Options: 

    -?  more detailed help message 

=head1 DESCRIPTION 

Attempts to connect to a minecraft server on the specified host:port. On 
success, a brief report like this will be printed: 

    Msg of the Day: A Minecraft Server 
    Players Online: 2 
    Max Players:  10 
    Ping Time:  0.175s 

If the :port is not specified, the default port number of 25565 will be used. 

=head1 OPTIONS 

=over 4 

=item B<-?> 

Display this documentation. 

=back 

=head1 AUTHOR & COPYRIGHT 

This script was written by Grant McLean ([email protected]) as a Perl port 
of a similar PHP script here: http://stackoverflow.com/questions/10055839/ 

This script may be freely used, copied and distributed under the same terms as 
Perl itself. 

=cut