


Detailed explanation of php IP conversion shaping (ip2long)_PHP tutorial
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,
echo ip2long ("10.2.1.3");
?>
We will get
167903491
How is this calculated, currently I Know that there are two algorithms. One
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
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
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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