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.
|
|
|
|
|
|
|
or
or possibly
A more mathematical approach that doesn't remove the last digit but rather replaces it with a 0:
|
||||||
|
|
|
Regexp vatiant
You could also use ip2long and long2ip... but have no idea about "box solution" with it:
|
||
|
|
|
|
This will remove the last digits and the dot.
|
||
|
|
