我正在尝试检查 $userinfo[host](IP 地址列表)是否在 visitor.txt 文件中有任何匹配项。如果是,则回显匹配的字符串
似乎没有任何回应。也没有错误。
这是基本的txt文件
208.54.22.144|1355385350
208.54.14.235|1355386649
69.151.178.16|1355386296
(编辑字符串)
$ips = file_get_contents('visitors.txt');
$ip_regex = '/\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/';
foreach ($ips as $check){
preg_match($ip_regex, $check, $current_ip);
if ((strpos($userinfo['host'],$current_ip[0]) !== false)) {
echo $userinfo['host'];
}
}