Home Backend Development PHP Tutorial Detailed explanation of php IP conversion shaping (ip2long)_PHP tutorial

Detailed explanation of php IP conversion shaping (ip2long)_PHP tutorial

Jul 21, 2016 pm 03:08 PM
php by protocol address how Field Will Replace with point of network Detailed explanation change Convert

How to convert an IP network address protocol address with four fields separated by dots into an integer? There is such a function ip2long in PHP. For example,

Copy code The code is as follows:

echo ip2long ("10.2.1.3");
?>

We will get
167903491

How is this calculated, currently I Know that there are two algorithms. One
Copy code The code is as follows:

function ip2int($ip){
//We first divide the ip into four segments, $ip1,$ip2,$ip3,$ip4
list($ip1,$ip2,$ip3,$ip4)=explode(".",$ip) ;
//Then the first segment is multiplied by 256 cubed, the second segment is multiplied by 256 squared, and the third segment is multiplied by 256
//This is the value we get
return$ip1 *pow(256,3)+$ip2*pow(256,2)+$ip3*256+$ip4;
}
?>

Second, use bits Operation
Copy code The code is as follows:

function ip2int($ip){
list($ip1,$ip2,$ip3,$ip4)=explode(".",$ip);
return($ip1<<24)|($ip2<<16)|($ip3< ;<8)|($ip4);
}
?>

We will find that some ips are negative after being converted into integers. This is because the The result is a signed integer, and the maximum value is 2147483647. To convert it to unsigned, you can use
sprintf("%u",ip2long($ip);

can be converted into a positive integer. And the result obtained can be converted back to the original IP address normally using long2ip. You can also use ip2long to verify whether an IP is valid, such as

Copy code The code is as follows:

function chk_ip($ip){
if(ip2long($ip)=="-1") {
return false;
}
returntrue;
}
//Application
var_export(chk_ip("10.111.149.42"));
var_export(chk_ip("10.111.256.42"));
?>

will output true and false

When saving IP data in a database (MySQL), we are used to using the ip2long function to generate an integer and then storing it in an int(11) type field. However, on different system platforms, the ip2long function obtains The values ​​are different, so it may cause errors when reading data from the database and using long2ip to get the IP. Let’s talk about the situation we encountered:
We use an int (11) type (range -2147483648 -2147483647 ) to save the result of processing an ip address with ip2long. For example, if the ip is '202.105.77.179', then the result obtained on a 32-bit machine is: -899068493, but on a 64-bit machine, 3395898803 is obtained. Then put it When writing to the database, since it exceeds the range of int(11), the result on the 64-bit machine is saved as the maximum value of int(11): 2147483647. So when it is taken out from the database, the wrong result is obtained. Get the IP address "127.255.255.255".
There are many solutions. For example, you can use mysql functions: INET_ATON and INET_NTOA to process the IP address; or change the field that saves the IP address to the bigint type, so that it can be used on a 64-bit machine. Although 3395898803 is saved, the correct result can still be obtained by using the long2ip function.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327465.htmlTechArticleHow to convert an IP network address protocol address with four fields separated by dots into an integer? There is such a function ip2long in PHP. For example, copy the code. The code is as follows: ?php echo ip2long("10.2.1.3");...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles