vote up 1 vote down star

I need to trim the last octet from an ip address using php. Basically I'm trying to just remove any digits after the third dot. I'm wondering if there is an out of the box solution for this? as my regex abilities are basic at best. Many thanks.

flag

3 Answers

vote up 5 vote down check
$trimmed = implode(".", array_slice(explode(".", $ip), 0, 3));

or

$trimmed = substr($ip, 0, strrpos($ip, "."));

or possibly

$trimmed = preg_replace("/(\d{1,3})\.(\d{1,3}).(\d{1,3}).(\d{1,3})/", '$1.$2.$3', $ip);

A more mathematical approach that doesn't remove the last digit but rather replaces it with a 0:

$newIp = long2ip(ip2long("192.168.0.10") & 0xFFFFFF00);
link|flag
2  
what more could i ask for? have a great day! :) – Pickledegg May 26 at 9:39
OMG, what a nice way to demonstrate the "there is more way to do it right" rule, respect! – Csaba Kétszeri May 26 at 15:42
vote up 0 vote down

Regexp vatiant

$ip = '192.168.20.10';
preg_replace_callback(
    '/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/'
    , create_function('$matches', '$matches[4] = "0"; array_shift($matches); return implode(".", $matches);')
    , $ip
);

You could also use ip2long and long2ip... but have no idea about "box solution" with it:

$ip = ip2long('192.168.20.10') - 10;
echo long2ip($ip);
link|flag
vote up 2 vote down

This will remove the last digits and the dot.

$trimmed = preg_replace('/\.\d{1,3}$/', '', $ip);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.