摘要:
函数 语句 阅读全文
摘要:
解决 接下来继续执行安装命令解决 阅读全文
摘要:
【解决方法】 解决中文乱码问题。配置 ~/.vimrc文件。在文件最后添加如下内容: set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936 set termencoding=utf-8 set encoding=utf-8 阅读全文
摘要:
#string到int int,err := strconv.Atoi(string) #string到int64 int64, err := strconv.ParseInt(string, 10, 64) //第二个参数为基数(2~36), //第三个参数位大小表示期望转换的结果类型,其值可以为 阅读全文
摘要:
比如讲数据存储在了 Redis 的有序集合 user_score 中,使用 Redis 来统计玩家排行榜的数据。 首先我们需要思考的是,一个典型的游戏排行榜都包括哪些功能呢? 统计全部玩家的排行榜按名次查询排名前 N 名的玩家查询某个玩家的分数查询某个玩家的排名对玩家的分数和排名进行更新查询指定玩家 阅读全文
摘要:
<?php header("content-type:text/html;charset=utf-8"); $redis = new redis(); $result = $redis->connect('127.0.0.1', 6379); $gots = $redis->get("gots"); 阅读全文
摘要:
go的默认安装路径是 /usr/local/go 编辑 vim ~/.bash_profile 配置参数 export GOROOT=/usr/local/go export GOPATH=/Users/wangteng/go export GOBIN=$GOROOT/bin export PATH 阅读全文
摘要:
问题报错: dyld: malformed mach-o image: segment __DWARF has vmsize < filesize 解决办法: cd $GOPATH/src/github.com/beego/bee go install -ldflags "-w" 阅读全文
摘要:
所遇问题: 在mac环境下安装bee工具的时候报错 go get github.com/beego/bee go: finding github.com/derekparker/delve/service/rpccommon latestgo: finding github.com/derekpar 阅读全文
摘要:
$time_iso8601 是内嵌变量用来获取时间,获取的时间格式如下:2020-01-01T01:01:01+01:00。使用正则表达式来获取所需时间的详细数据。 一、按照天生成 listen 80; if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})") 阅读全文