📅  最后修改于: 2023-12-03 15:15:21.528000             🧑  作者: Mango
Go-运营商是一个基于Golang编写的运营商识别库。它可以根据手机号码判断其所属的运营商,目前支持中国大陆的移动、联通、电信三大运营商。
go get github.com/lovedboy/go-运营商
import "github.com/lovedboy/go-运营商"
operator := operatedby.Get("13911111111")
if operator == operatedby.ChinaMobile {
fmt.Println("该手机号码属于中国移动")
} else if operator == operatedby.ChinaUnicom {
fmt.Println("该手机号码属于中国联通")
} else if operator == operatedby.ChinaTelecom {
fmt.Println("该手机号码属于中国电信")
} else {
fmt.Println("该手机号码不属于中国大陆的运营商")
}
该库只支持中国大陆的运营商识别,不支持其他国家或地区的运营商。同时,该库的识别精度也不是100%准确,仅供参考。