logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

golang项目部署打包镜像之/usr/local/bin/xxx.sh: No such file or directory

启动容器,报错/usr/local/bin/xxx.sh: No such file or directory

#docker
$GOPATH/go.mod exists but should not

执行go env报错:$GOPATH/go.mod exists but should not。unset GOPATH

#golang
php 调用第三方接口

一、file_get_contents1.定义file_get_contents() 函数将指定 URL 的文件读入一个字符串并返回。2.语法file_get_contents(path, include_path, context, start, max_length)path:要读取的路径或链接。include_path:是否在路径中搜索文件,搜索则设为 1,默认为 false。context

服务器上传apk包,生成访问链接

需求:app不再更新,但还存在少量客户下载的需求。需要把apk包放置我们自己指定的服务器,并把下载链接给前端。解决:方案一:方案二:方案三:

#个人开发
关于nginx反向代理使用域名的缓存问题

nginx反向代理使用域名的缓存问题

#nginx#缓存
array_merge和+的区别

1、字符串键名相同时,array_merge()后边值覆盖前面的值,+是前盖后;2、数值键名相同时,array_merge()不会覆盖,+是前盖后;eg:字符串$arr1 = array('a'=>'PHP');$arr2 = array('a'=>'PYTHON');print_r(array_merge($arr1,$arr2)); //Array ( [a] => PYTH

到底了