1 Star 4 Fork 3

tym_hmm/go-helper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
IpTrans.go 389 Bytes
一键复制 编辑 原始数据 按行查看 历史
天蝎儿 提交于 2023-03-12 00:10 . 产加ip工具
package IpHelper
import (
"encoding/binary"
"net"
)
/**
ip转 long
*/
func Ip2long(ipstr string) uint64 {
ip := net.ParseIP(ipstr)
if ip == nil {
return 0
}
ip = ip.To4()
return binary.BigEndian.Uint64(ip)
}
/**
long转ip
*/
func Long2ip(ipLong uint64) string {
ipByte := make([]byte, 4)
binary.BigEndian.PutUint64(ipByte, ipLong)
ip := net.IP(ipByte)
return ip.String()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tym_hmm/go-helper.git
git@gitee.com:tym_hmm/go-helper.git
tym_hmm
go-helper
go-helper
v1.1.154

搜索帮助