2

我正在尝试制作脚本,我想显示从 URL 插入的游戏服务器 ip 的信息。

在当前配置中,我有:

<?php
define( 'SQ_TIMEOUT',     1 );
define( 'SQ_ENGINE',      SourceQuery :: SOURCE );  
define( 'SQ_SERVER_ADDR', '123.45.67.890' ); 
define( 'SQ_SERVER_PORT', 12345); 
?>

我试过这样:

<?php

define( 'SQ_TIMEOUT',     1 );
define( 'SQ_ENGINE',      SourceQuery :: SOURCE );  

    if (isset($_GET['ip'])){
        $ip = $_GET['ip'];
    }
    if (isset($_GET['port'])){
        $port = $_GET['port'];
    }

define( 'SQ_SERVER_ADDR', $ip ); 
define( 'SQ_SERVER_PORT', $port );     
?>

像是

http://localhost/".$ip.":".$port.

而不是固定的ip。插入“定义”

4

1 回答 1

0

你不能让你的网址为localhost/$ip:$port

您将需要它,localhost/addr=$IP:$PORT因为您正在使用$_GET

使用以下代码修改您的代码:

<?php

define( 'SQ_TIMEOUT',     1 );
define( 'SQ_ENGINE',      SourceQuery :: SOURCE );  

    if (isset($_GET['addr'])){
        $addr = $_GET['addr'];
        $addrarray = explode(':', $myString);
        $ip = $addrarray[0];
        $port = $addrarray[1];
    }

define( 'SQ_SERVER_ADDR', $ip ); 
define( 'SQ_SERVER_PORT', $port ); 

?>

现在你的地址是这样的:

我正在使用示例 ip:192.168.0.0 和示例端口:1234

localhost/addr=192.168.0.0:1234

希望能帮助到你 :)

于 2015-07-27T19:52:33.553 回答