0

我有以下代码,它将一个 IP 地址发送到另一台服务器上的页面,然后处理该 IP 地址并返回描述。

问题是我没有收到错误,但代码没有返回结果。

发送 IP 地址的代码

 $response = file_get_contents('http://www.domain.com/bean/ripe.php?ip=$ip');
 print_r( $response );

获取ip地址的代码,处理它并返回结果。

 if ( isset( $_GET['ip'] ) && $_GET['ip'] ) {

    include("ipology.class.php");
$ipology = new ipology( array($ip) );
$out = $ipology->out();
foreach( $out as $ip ) {
if( is_array( $ip ) ) {

$address = implode( ", ", (array) 
                $ip['address'] );
                $descr   = implode( ", ", (array) $ip['descr'] );
               echo "$descr";   

} }}
4

1 回答 1

0

您当前没有将 IP 地址传递给 URL,而是传递了文字$ip_address. 这是因为您'对 url 使用单引号。"如果要将变量传递给字符串,请使用双引号:

$response = file_get_contents("http://www.domain.com/bean/ripe.php?ip=$ip_address");
于 2013-05-23T00:33:54.063 回答