码迷,mamicode.com
首页 > 数据库 > 详细

MySQL如何有效的存储IP地址及字符串IP和数值之间如何转换

时间:2016-08-11 19:12:58      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

  1. mysql> select inet_aton(‘192.168.0.1‘);  
  2. +--------------------------+  
  3. | inet_aton(‘192.168.0.1‘) |  
  4. +--------------------------+  
  5. |               3232235521 |  
  6. +--------------------------+  
  7. 1 row in set (0.00 sec)  
  8.   
  9. mysql> select inet_ntoa(3232235521);  
  10. +-----------------------+  
  11. | inet_ntoa(3232235521) |  
  12. +-----------------------+  
  13. | 192.168.0.1           |  
  14. +-----------------------+  
  15. 1 row in set (0.00 sec)  
  16. 基于php中的ip2Long和long2Ip实现

MySQL如何有效的存储IP地址及字符串IP和数值之间如何转换

标签:

原文地址:http://www.cnblogs.com/719907411hl/p/5762172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!