(1.) I want allow visitors to access a page just from a some IP Address Range (paragraph 2). easily as adding more regex of IP Address to IP Address List.
My regular expression array is :
$IP_LIST_ACCESS = array(
"/^188\.133\.11\.([1-9]|[1-9][0-9]|1([0-9][0-9])|2([0-4][0-9]|5[0-4]))$/"
,"/^188\.133\.14\.([1-9]|[1-9][0-9]|1([0-1][0-9]|2[0-8]))$/"
,"/^127\.0\.0\.1$/"
);
(2.) IP Range of above array is 188.133.11.1-188.133.11.254 and 188.136.14.1-188.136.14.128 and 127.0.0.1
and bellow is My codes to detect wrong ip address and die:
$USER_IP_ADDR = $_SERVER['REMOTE_ADDR'];
foreach ($IP_LIST_ACCESS as $IP_ACC_ARRAY)
{
if (!preg_match($IP_ACC_ARRAY, $USER_IP_ADDR))
{
echo '#INVALID IP'; #DEBUG
die;
}
}
(3.) with my above codes , always give INVALID IP Error (always detect as wrong IP address) .
Where is the problem ?
EDIT
(4.) I just want to do this , not exact with preg_match if have a better way .