2

私はGeoIP Webサービスを購入して、そこからクライアントの国を取得し、データベースのIPを取得します.APIから応答を取得するためのphpコードを提供して、そのIPから魔女の国を教えてくれます。これが彼らが私に与えるコードです:

    $query = "http://geoip.maxmind.com/f?l=" . $license_key . "&i=" . $ipaddress;
$url = parse_url($query);
$host = $url["host"];
$path = $url["path"] . "?" . $url["query"];
$timeout = 1;
$fp = fsockopen ($host, 80, $errno, $errstr, $timeout)
        or die('Can not open connection to server.');
if ($fp) {
  fputs ($fp, "GET $path HTTP/1.0\nHost: " . $host . "\n\n");
  while (!feof($fp)) {
    $buf .= fgets($fp, 128);
  }
  $lines = explode("\n", $buf);
  $data = $lines[count($lines)-1];
  fclose($fp);
} else {
  # enter error handing code here
}
echo $data;

$ipaddress の場所を示す $data 値を取得しますが、エラーが発生します: Undefined variable $buf ?

4

2 に答える 2

2

追加

$buf = '';

コードの上に

于 2013-01-23T22:12:30.490 に答える
1

コードを次のように変更します。

$query = "http://geoip.maxmind.com/f?l=" . $license_key . "&i=" . $ipaddress;
$url = parse_url($query);
$host = $url["host"];
$path = $url["path"] . "?" . $url["query"];
$timeout = 1;
$fp = fsockopen ($host, 80, $errno, $errstr, $timeout)
        or die('Can not open connection to server.');

if ($fp) {
  fputs ($fp, "GET $path HTTP/1.0\nHost: " . $host . "\n\n");
  $buf = ''; //This is the line of code that initializes $buf and will keep the undefined error from happening 
 while (!feof($fp)) {
    $buf .= fgets($fp, 128);
  }
  $lines = explode("\n", $buf);
  $data = $lines[count($lines)-1];
  fclose($fp);
} else {
  # enter error handing code here
}
echo $data;
于 2013-01-23T22:13:56.020 に答える