上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: Git常用操作命令收集: 1) 远程仓库相关命令 检出仓库:$ git clone git://github.com/jquery/jquery.git 查看远程仓库:$ git remote -v 添加远程仓库:$ git remote add [name] [url] 删除远程仓库:$ git  阅读全文
posted @ 2022-04-07 09:31 -韩 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://curlconverter.com/ 阅读全文
posted @ 2022-03-27 20:17 -韩 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 首先在终端输入命令 npm i -g serve 其次进入打包好的dist目录 cd dist 最后运行 serve 阅读全文
posted @ 2022-03-16 14:38 -韩 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: if(! mb_check_encoding($result, 'utf-8')) { $result = mb_convert_encoding($result,'UTF-8',['ASCII','UTF-8','GB2312','GBK']); } 阅读全文
posted @ 2022-03-09 11:20 -韩 阅读(101) 评论(0) 推荐(0) 编辑
摘要: Qiniu.php <?php namespace app\common\service; use Qiniu\Auth; use Qiniu\Storage\UploadManager; class Qiniu { const QINIU_URL = ''; const ACCESS_KEY = 阅读全文
posted @ 2022-02-22 15:16 -韩 阅读(176) 评论(0) 推荐(0) 编辑
摘要: <div id="container" style=" height:600px; width:100%; text-align: center;"></div> <script src="https://webapi.amap.com/maps?v=1.4.15&key=你的高德key&plugi 阅读全文
posted @ 2022-02-22 15:08 -韩 阅读(745) 评论(0) 推荐(0) 编辑
摘要: 获取所有上级节点(包含自身) SELECT group_concat(T1._id) as id FROM ( SELECT @r AS _id, ( SELECT @r := parent_id FROM table_name WHERE id = _id ) AS parent_id, @l : 阅读全文
posted @ 2022-01-18 13:59 -韩 阅读(883) 评论(0) 推荐(0) 编辑
摘要: https://www.jq22.com/jquery-info448 阅读全文
posted @ 2022-01-18 09:54 -韩 阅读(23) 评论(0) 推荐(0) 编辑
摘要: stripslashes(trim(str_replace(array("\r\n", "\r", "\n", " ","'"), "", $strng))) 阅读全文
posted @ 2022-01-12 13:57 -韩 阅读(170) 评论(0) 推荐(0) 编辑
摘要: $color = $this->dominant_color($img); //获取图片颜色 $water = $this->make_watermark_img('水印文字', $color); //生成水印图片 $this->add_img_water($file_path, $water['u 阅读全文
posted @ 2021-12-29 16:02 -韩 阅读(97) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页