381 Star 2.5K Fork 616

GVPJohn / gf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
genv.go 779 Bytes
一键复制 编辑 原始数据 按行查看 历史
John 提交于 2019-01-16 13:35 . package comments update
// Copyright 2017 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package genv provides operations for environment variables of system.
//
// 环境变量管理
package genv
import "os"
func All() []string {
return os.Environ()
}
// 获取环境变量,并可以指定当环境变量不存在时的默认值
func Get(k string, def...string) string {
v, ok := os.LookupEnv(k)
if !ok && len(def) > 0 {
return def[0]
}
return v
}
func Set(k, v string) error {
return os.Setenv(k, v)
}
func Remove(k string) error {
return os.Unsetenv(k)
}
Go
1
https://gitee.com/johng/gf.git
git@gitee.com:johng/gf.git
johng
gf
gf
v1.4.7

搜索帮助

53164aa7 5694891 3bd8fe86 5694891