上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 76 下一页
摘要: 解决方法: 查看端口:netstat -lntup | grep 9000 杀死进程:killall php-fpm 重新启动:php-fpm 阅读全文
posted @ 2022-06-22 15:34 浮尘微光 阅读(236) 评论(0) 推荐(0)
摘要: brew -v git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core git config --global --add safe.directory /opt/homeb 阅读全文
posted @ 2022-06-15 11:45 浮尘微光 阅读(2468) 评论(0) 推荐(0)
摘要: /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 阅读全文
posted @ 2022-06-15 11:24 浮尘微光 阅读(248) 评论(0) 推荐(0)
摘要: http://mirrors.ustc.edu.cn/help/brew.git.html Homebrew 源使用帮助 地址 https://mirrors.ustc.edu.cn/brew.git/ 说明 Homebrew 源代码仓库 使用说明 替换 USTC 镜像: export HO 阅读全文
posted @ 2022-06-14 20:30 浮尘微光 阅读(110) 评论(0) 推荐(0)
摘要: func InitLog() { //设置输出样式,自带的只有两种样式logrus.JSONFormatter{}和logrus.TextFormatter{} log.SetFormatter(&log.TextFormatter{}) log.SetOutput(os.Stdout) //设置o 阅读全文
posted @ 2022-04-15 16:30 浮尘微光 阅读(1254) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/1b04d75769a7 Golang里的格式化字符额外提供了%v、%+v和%#v,可以用作打印一些基础类型的值,同时也支持打印接口和结构体。 func main() { num := 1 str := "ted" sleep := false f 阅读全文
posted @ 2022-04-12 17:33 浮尘微光 阅读(4184) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/yihuihui/p/9095130.html Mac环境下RabbitMq安装与测试教程 RabbitMq安装与测试教程 Installing on Mac I. 安装 123456789 brew install rabbitmq## 进入安装目录 阅读全文
posted @ 2022-04-06 19:47 浮尘微光 阅读(791) 评论(0) 推荐(0)
摘要: https://www.phpbloger.com/article/505.html 安装docker,下载docker安装即可。 https://docs.docker.com/docker-for-mac/install/ 安装完成之后查看docker版本 docker --version Li 阅读全文
posted @ 2022-04-02 10:49 浮尘微光 阅读(1397) 评论(0) 推荐(0)
摘要: header("Access-Control-Allow-Origin:*"); //https 不可以用</em>号通配符 header('Access-Control-Allow-Headers:Origin,Content-Type,Cookie,X-CSRF-TOKEN,Accept,Aut 阅读全文
posted @ 2022-03-28 15:47 浮尘微光 阅读(334) 评论(0) 推荐(0)
摘要: $params = [ 'a' => 'hello', 'b' => true, 'c' => false, ]; echo http_build_query($params); 输出:a=hello&b=1&c=0 阅读全文
posted @ 2022-03-23 15:59 浮尘微光 阅读(154) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 76 下一页