Revize 1917
Přidáno uživatelem Michal Kliment před více než 11 roky(ů)
freenetis/branches/1.1/application/models/ip_address.php | ||
---|---|---|
// split IP address
|
||
$ips = explode('.', $ip_address_like);
|
||
|
||
// returns only if last number of IP address is missing
|
||
if (count($ips) < 4)
|
||
return array();
|
||
|
||
// take only first 3 numbers
|
||
$ips = array_slice($ips, 0, 3);
|
||
|
Také k dispozici: Unified diff
Optimalizace naseptavace volnych IP adres.