PHP verifies the accuracy of IP address input: array value verification

Source: Internet
Author: User

I have seen some methods of IP address verification, most of which use the regular expression \ D for simple verification. Imagine what if I enter an IP address such as 258.689.125.4 ??

I wrote an IP address verification method (without considering efficiency issues) and shared it with you. I am eager to share some ideas.

 

<? PHP
$ String = '1970. 168.1.258 ';
$ Array = Explode ('.', $ String );
Foreach ( $ Array As $ Value ){
If ( $ Value <0 | $ Value > 255 ){
Echo "The IP address you entered is incorrect. Please enter it again ";
Return ;
}
}
Echo $ Array [0] * POW (255, 3) + $ Array [1] * POW (255, 2) + $ Array [2] * POW (255, 1) + $ Array [3];
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.