Home >Database >Mysql Tutorial >如何在MySQL中的获取IP地址的网段_MySQL

如何在MySQL中的获取IP地址的网段_MySQL

WBOY
WBOYOriginal
2016-06-01 13:36:101430browse

bitsCN.com


效果展示:

通过下面的命令可以快速的获取IP地址的网段

如何在MySQL中的获取IP地址的网段_MySQL
 

命令解释:

inet_aton('209.207.224.1')这个函数是将IP地址转化为一个序列.
 

convert是将序列类型定义成整数.    
 

&0xFFFFFF00的意思是与FFFFFF00这个16进制数进行与操作.这步操作相当于掩码.可以过滤网段.
 

inet_ntoa这个函数是将整理好的序列转化成IP地址的形式.
 

bitsCN.com
Statement:
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