mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
13 lines
169 B
Go
13 lines
169 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
)
|
|
|
|
// 使用GetVar获取动态变量
|
|
func main() {
|
|
fmt.Println(g.Config().GetVar("memcache.0").String())
|
|
}
|