上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 34 下一页
  2021年8月24日
摘要: package main import "fmt" func main(){ %v,原样输出 %T,打印类型 %t,bool类型 %s,字符串 %f,浮点 %d,10进制的整数 %b,2进制的整数 %o,8进制 %x,%X,16进制 %x:0-9,a-f %X:0-9,A-F %c,打印字符 %p, 阅读全文
posted @ 2021-08-24 16:34 kevin_yang123 阅读(99) 评论(0) 推荐(0) 编辑
  2021年8月20日
摘要: <?php $za = new \ZipArchive(); $filePath = storage_path('app/public/') . '2.zip';// 压缩包所在的位置路径 $za->open($filePath, \ZipArchive::CREATE|\ZipArchive::O 阅读全文
posted @ 2021-08-20 11:09 kevin_yang123 阅读(204) 评论(0) 推荐(0) 编辑
  2021年8月17日
摘要: You-get 可以快速下载网站视频 第一步安装python3.7(https://www.python.org/) 安装包下载好指后,就是一顿安装 安装成功之后 windows+R 进入cmd python安装成功之后 命令:pip3 install you-get 接着:pip3 install 阅读全文
posted @ 2021-08-17 16:28 kevin_yang123 阅读(602) 评论(0) 推荐(0) 编辑
  2021年8月16日
摘要: 引入包一直是红色。 使用下载也没用 go get -u github.com/gin-gonic/gin 更新之后 然后 go mod init 这个时候,需要添加模块 go mod init http 然后执行 go mod tidy 此时文件已经安全引入项目中了 阅读全文
posted @ 2021-08-16 20:09 kevin_yang123 阅读(1017) 评论(0) 推荐(0) 编辑
  2021年8月3日
摘要: /** * Execute the job. * * @return void */ public function handle() { try { //执行代码 (new LazadaTransactionsExportQueueJobLogic())->run($this->batchId); 阅读全文
posted @ 2021-08-03 14:51 kevin_yang123 阅读(61) 评论(0) 推荐(0) 编辑
  2021年7月31日
摘要: http://docs.developer.amazonservices.com/en_US/scratchpad/Scratchpad_Using.html 然后对应站点获取查询 找到入口: 进入就是uk(英国站点) 阅读全文
posted @ 2021-07-31 14:10 kevin_yang123 阅读(218) 评论(0) 推荐(0) 编辑
  2021年7月27日
摘要: 1. 如在测试环境提交一个文件 git log 查看提交分支ssh-id commits id 2.切换到正式分支 -master git checkout master 切换到指定分支 3.合并到正式分支中去 git cherry-pick 82ecb31 阅读全文
posted @ 2021-07-27 14:46 kevin_yang123 阅读(349) 评论(0) 推荐(0) 编辑
  2021年7月9日
摘要: 数据表结构 //递归 - 获取当前分类下的所有子集id public function test(){ $child = $this->getAllNextId(4); p($child);exit; } public function getAllNextId($id,$data=[]){ $pi 阅读全文
posted @ 2021-07-09 15:30 kevin_yang123 阅读(255) 评论(0) 推荐(0) 编辑
  2021年7月6日
摘要: 开启docker 服务(每次使用docker时都需要启动对应服务 server-客户端服务) sudo service docker start 查看docker 镜像 docker image ls 官方制定下载 docker 流程 curl -fsSL https://get.docker.co 阅读全文
posted @ 2021-07-06 11:55 kevin_yang123 阅读(35) 评论(0) 推荐(0) 编辑
  2021年7月3日
摘要: git init // 初始化版本库 git add . // 添加文件到版本库(只是添加到缓存区),.代表添加文件夹下所有文件 git commit -m "first commit" // 把添加的文件提交到版本库,并填写提交备注 git remote add origin 你的远程库地址 // 阅读全文
posted @ 2021-07-03 19:03 kevin_yang123 阅读(510) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 34 下一页