![php](https://habrastorage.org/r/w120/files/373/e8b/dd3/373e8bdd3cb644d3bbeba47d34d1876d.png)
PHP
0
Вклад в тег
function test_IP()
{
$IPs_arr = array
(
array('xxx.xxx.xxx.xxx', 'xxx.xxx.255.255')
);
$my_ip2long = @ip2long($_SERVER['REMOTE_ADDR']);
foreach ($IPs_arr as $IPs) {
if ($my_ip2long >= @ip2long($IPs[0]) && $my_ip2long <= @ip2long($IPs[1]))
return "1";
}
return "2";
}
test_IP();