1 Star 0 Fork 0

beshy/php2go

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util.go 262 Bytes
一键复制 编辑 原始数据 按行查看 历史
beshy 提交于 2020-12-02 21:32 +08:00 . add GetIntOrZero, GetInt64OrZero
package php2go
import "strconv"
func GetIntOrZero(s string) int {
i, err := strconv.Atoi(s)
if err == nil {
return i
}
return 0
}
func GetInt64OrZero(s string) int64 {
i, err := strconv.ParseInt(s, 10, 64)
if err == nil {
return i
}
return 0
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/beshy/php2go.git
git@gitee.com:beshy/php2go.git
beshy
php2go
php2go
v1.0.2

搜索帮助