go学习笔记1

作者: 分类: go 时间: 2024-10-05 评论: 暂无评论

1.打印多维数组

var data= [3][2]string{}
fmt.Printf("%#v\n", data))
[3][2]string{[2]string{"", ""}, [2]string{"", ""}, [2]string{"", ""}}

2.字母转int strconv.Atoi() alphabetic to int
int转字母 strconv.Itoa() int to alphabetic

3.time 常用方法

time.Now().Unix() 获取时间戳 
time.Now().AddDate(years int, months int, days int) 增加时间
time.Now().Format("2006-01-02 15:04:05")  //格式化时间

4.以下返回值是一样的

func getX2X3(a int) (int, int) {
    return a * 2, a * 3
}
func getX2X32(a int) (a2 int, a3 int) {
    a2 = a * 2
    a3 = a * 3
    return
}

mysql创建用户并授权

作者: 分类: mysql 时间: 2023-12-21 评论: 暂无评论
CREATE USER '用户名'@'localhost' IDENTIFIED BY '密码';#如果是本地用户可用localhost,如果想让该用户可以从任意 远程主机登陆,可以使用通配符%
GRANT all privileges ON 数据库.* TO '用户名'@'localhost'; #授权
FLUSH PRIVILEGES;#刷新权限

台式机配置推荐

作者: 分类: 闲谈 时间: 2023-05-11 评论: 暂无评论

1.办公主机
Intel(R) Core(TM) i5-10500 CPU @ 3.10GHz
CPU主频 3.1GHz
最高睿频 4.5GHz
核心数量 六核心
线程数量 十二线程
热设计功耗(TDP) 65W
插槽类型 LGA 1200

宝塔切换cli php默认版本

作者: 分类: php 时间: 2023-03-31 评论: 暂无评论

[查看当前php版本]
ls -l /usr/bin/php
/usr/bin/php -> /www/server/php/73/bin/php

php安装文件夹如下 /www/server/php

[切换成7.2]
ln -sf /www/server/php/72/bin/php /usr/bin/php

thinkphp6 with sql执行结果

作者: 分类: php 时间: 2023-02-24 评论: 暂无评论
class UserVip extends Model
{

}
class User extends Model
{

    public function vip(){
        return $this->hasOne("UserVip",'user_id','user_id');
    }
}

User::with('vip')->whereIn('user_id',['1001691305','1000100023'])->select();

Sql执行结果:

[sql] SELECT * FROM `yoshop_user` WHERE  `user_id` IN (1001691305,1000100023) 
[sql] SELECT * FROM `yoshop_user_vip` WHERE  `user_id` IN (1000100023,1001691305)
Top ↑