gpt4 book ai didi

PHP undefined variable ?

转载 作者:行者123 更新时间:2023-12-04 05:14:17 25 4
gpt4 key购买 nike

这个问题不太可能对任何 future 的访客有帮助;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于互联网的全局受众。如需帮助使这个问题更广泛适用,visit the help center .




8年前关闭。




我购买 GeoIP Web 服务以从我的数据库中获取客户端国家/地区的 IP,他们给我一个 php 代码以从那里获得响应的 API 告诉我来自 的女巫国家/地区的 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;

我得到的 $data 值告诉我 $ipaddress 来自哪里......但我得到一个错误: undefined variable $buf ?

最佳答案

添加

$buf = '';

在你的代码之上

关于PHP undefined variable ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14490345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com