Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using PHP, how do I validate that a string is a valid IP?

Examples of valid strings:

  • 192.158.5.95
  • 121.212
  • 12.12.12.204

Examples of invalid strings:

  • 121
  • 10 12 12 (no dots)

My current script uses this code, but this is insufficient for my needs:

if(strpos($input, '.') !== false)
{    
  // There is a period 
} 
else 
{     
  // No Period 
} 

As such, can someone please advise how I can validate that a string is a valid IP?

share|improve this question
Please rewrite your question. It is gramattically gibberish at the moment, and would also benefit from using the rich text formatting functionality (e.g. code formatting). Furthermore, using an ellipsis ("...") implies impatience, which implies entitlement as though we should have already solved your problem for you by now. Might want to revisit that. – Matt Mitchell Apr 29 '11 at 3:12
ya actualy i m new for this site so i haven't more knowledge but i think it's an excelent site – Harsh Apr 29 '11 at 3:15
if i want to delete my this question then how it is posible bcause i have an ans for this question – Harsh Apr 29 '11 at 3:16
1  
@harison - You don't delete your question when you get an answer, you leave it for others to benefit from the knowledge. – Matt Mitchell Apr 29 '11 at 3:17
1  
@harison: ask, get answer, delete --- is not correct way to behave here ;-) – zerkms Apr 29 '11 at 3:17
show 5 more comments

4 Answers

up vote 12 down vote accepted
$valid = ip2long($ip) !== false;
share|improve this answer
Excellent answer. – Matt Mitchell Apr 29 '11 at 3:14
3  
This isn't exactly valid. The IPv4 format allows to omit parts of the address, so checking if it comes back as the same input can yield false positives. ip2long already returns false if the parsing fails, so you better just check that: $valid = ip2long($ip) !== false; – zneak Apr 29 '11 at 3:14
@zneak: yep, much better, thanks. – zerkms Apr 29 '11 at 3:16
@zneak: yes yes yes, I got it ;-) – zerkms Apr 29 '11 at 3:19
1  
@Ozh: 200 is actually technically valid IP address 0.0.0.200. There are restrictions that won't allow you to use it in real life (like a lot of other), but it still a valid IP – zerkms Nov 25 '12 at 20:41
show 5 more comments

Try it with filter_var

Example:

if(filter_var('127.0.0.1', FILTER_VALIDATE_IP) !== false)
share|improve this answer
this is actually pretty good – Pacerier Oct 2 '11 at 2:10
Since I discovered filter_var I don't want to miss it. It's a reliable way (as far as I can say) to validate IPs, E-Mail addresses etc. – iNaD Nov 25 '11 at 13:15

Just in case there's anyone that doesn't want to use the ip2long function, here is a simple function (Idea taken from a class in osTicket):

function is_ip( $ip = null ) {

    if( !$ip or strlen(trim($ip)) == 0){
        return false;
    }

    $ip=trim($ip);
    if(preg_match("/^[0-9]{1,3}(.[0-9]{1,3}){3}$/",$ip)) {
        foreach(explode(".", $ip) as $block)
            if($block<0 || $block>255 )
                return false;
        return true;
    }
    return false;
}
share|improve this answer
Why preg_match ? – Pacerier Oct 2 '11 at 2:09
It is used to test if each part of the IP is within the correct range. – Tomgrohl Oct 3 '11 at 9:15
You don't need a preg for this right – Pacerier Oct 3 '11 at 15:37
No but it one of the ways you can do it. – Tomgrohl Oct 3 '11 at 19:05

iNaD ist right, the filter_var() version is the best one - ip2long() is really not that failsave. Just try to put in some strange things and see for yourself. I did a performace-check and filter_var is pretty much faster than the common regex versions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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