摘要: /** * 生成某个范围内的随机时间 * @param <type> $begintime 起始时间 格式为 Y-m-d H:i:s * @param <type> $endtime 结束时间 格式为 Y-m-d H:i:s * @param <type> $now 是否是时间戳 格式为 Boole 阅读全文
posted @ 2021-10-27 11:03 我就丶是逗比 阅读(45) 评论(0) 推荐(0)
摘要: SELECT CONCAT(CAST(round((当前额度/总额度)*100,3) AS CHAR),'%') as 字段名 from 表; 阅读全文
posted @ 2021-10-22 17:49 我就丶是逗比 阅读(264) 评论(0) 推荐(0)
摘要: 1 C:\Users\Administrator\AppData\Local\Google\Chrome\User Data\Default\Extensions 阅读全文
posted @ 2021-10-14 21:38 我就丶是逗比 阅读(41) 评论(0) 推荐(0)
摘要: update 表名 set 字段 = replace(字段, '要修改的内容' , '修改后的内容'); UPDATE admin set name = replace(name,'张','李'); 阅读全文
posted @ 2021-10-09 09:57 我就丶是逗比 阅读(719) 评论(0) 推荐(0)
摘要: 1 @echo off&setlocal EnableDelayedExpansion 2 set a=1 3 for /f "delims=" %%i in ('dir /b *.jpg') do ( 4 if not "%%~ni"=="%~n0" ( 5 if !a! LSS 10 (ren 阅读全文
posted @ 2021-10-08 14:51 我就丶是逗比 阅读(117) 评论(0) 推荐(0)
摘要: 根据文档走即可:https://docs.telerik.com/fiddler/configure-fiddler/tasks/configureforios 阅读全文
posted @ 2021-10-07 17:32 我就丶是逗比 阅读(132) 评论(0) 推荐(0)
摘要: 发布的文章不显示在主页? 解决:“文章” 默认不显示在博客主页,勾选 显示在我的博客首页 的选项后,还需要在博客后台 选项 中,勾选 允许“文章”显示在首页及RSS中 阅读全文
posted @ 2021-09-29 14:30 我就丶是逗比 阅读(1036) 评论(3) 推荐(7)
摘要: 1、首先安装 Vetur 插件 2、打开配置文件 【File】-【Preference】-【Settings】-【Extensions】-【Vetur】-【Edit in settings.json】 3、将以下代码复制保存 setting.json 数据中 "vetur.format.defaul 阅读全文
posted @ 2021-09-29 14:25 我就丶是逗比 阅读(766) 评论(0) 推荐(1)
摘要: 1 import time 2 3 from nonebot import on_command 4 from nonebot.rule import to_me 5 from nonebot.typing import T_State 6 from nonebot.adapters import 阅读全文
posted @ 2021-09-29 14:25 我就丶是逗比 阅读(485) 评论(0) 推荐(0)
摘要: 1、进入目录 /www/server/panel/data/plugin.json 批量替换 "endtime": -1为"endtime": 9999999999999 2、打开 /www/server/panel/class/panelPlugin.py文件,搜索 hash 关键字 从162行的 阅读全文
posted @ 2021-08-26 22:21 我就丶是逗比 阅读(173) 评论(0) 推荐(0)