avatar
文章
109
标签
41
分类
12
📝主页
📱作品
📬联系
🧑‍💻关于
👋Harry Blog
搜索
📝主页
📱作品
📬联系
🧑‍💻关于

👋Harry Blog

Clear WeChat Official Account Page Authorization (Mobile)
发表于2022-09-28|Note|wechat
Steps to revoke previously granted personal info authorization for a WeChat Official Account on a phone.
如何在手机上清除公众号页面授权? 在微信上清除公众号个人信息授权
发表于2022-09-28|开发前端
1.首先取关公众号2.然后重新搜索公众号名称,找到公众号后点击进入公众号页面3.点击右上角三个点,在弹出的菜单中选择”设置”4.点击”已获取的信息”5.点击管理按钮, 删除已授权的信息列,并点击完成6.再进入到公众号页面,发现需要重新获取授权了
JS解析地址栏参数a=1&b=2为对象格式
发表于2022-09-21|开发前端|JS
JS解析地址栏string参数为object对象格式 将 a=1&b=2 格式转换为对象格式 将 “a=1&b=2” 格式转换为 {a: “1”, b: “2”} module.exports = { str2Obj: function (str) { if ("string" != typeof str) return str if (str.indexOf("&") < 0 && str.indexOf("=") < 0) return {} let newStr = str.split("&"),newOjb = {} newStr.forEach(value => { if (value.indexOf("=") > -1) { let newStr1 = value...
JS Query String to Object
发表于2022-09-21|DevelopmentFrontend|JS
Convert “a=1&b=2” into {a:”1”, b:”2”}. function str2Obj(str){ if (typeof str !== 'string') return str; if (str.indexOf('&') < 0 && str.indexOf('=') < 0) return {}; return str.split('&').reduce((acc,pair)=>{ if(pair.includes('=')){ const [k,v] = pair.split('='); acc[k]=v; } return acc; },{});}
PHP 邮箱邮件发送 腾讯QQ企业邮件发送
发表于2022-09-20|开发后端
PHP 邮箱邮件发送 腾讯QQ企业邮件发送 单文件版 code:https://github.com/harry-1012/PHP_Email_OneFile/tree/main <?phpclass Email{ /** * @param Type reqData["title"] 邮件subject 主题 * @param Type reqData["content"] 邮件内容 * @param Type reqData["fromname"] 发件人姓名 * @param Type reqData["receiver"] 收件人邮箱 * @return boolean 发送成功会返回true,失败false */ public function qqComMailSend($reqData = null) { if (empty($reqData)) { $...
PHP Email Sender QQ Enterprise
发表于2022-09-20|DevelopmentBackend
Single-file PHP email sender supporting QQ enterprise SMTP.
PHP批量模糊清空Redis redis->scan key*
发表于2022-09-06|开发后端数据库
PHP批量模糊清空Redis <?php$redis = new \Redis();$redis->connect('127.0.0.1',6379); $redis->setOption(\Redis::OPT_SCAN, \Redis::SCAN_RETRY);while ($arr_keys = $redis->scan(NULL, "key_*", 5)) { call_user_func_array([$redis, 'del'], $arr_keys); echo var_export($arr_keys, true) . PHP_EOL;}
1…567…16
avatar
Harry
文章
109
标签
41
分类
12
关于
最新文章
comfyui通过Api请求报错,通过comfyui界面执行正常2025-04-18
ComfyUI workflow fails via API but succeeds in UI2025-04-18
Edit Video Duration Metadata2025-03-16
修改视频元信息时长 duration修改2025-03-16
comfyui gemeni apikey 配置2025-03-15
分类
  • Development50
    • Backend29
      • Database2
    • Frontend19
    • Tools1
  • Note3
  • 开发53
    • 前端21
    • 后端31
      • 数据库3
    • 工具1
  • 随笔3
标签
字体 java video mysql uniapp struct Vue.js jar PHP go wechat 进程/线程 MQTT electron MySQL font canvas emoji php javascript 视频 apicloud vcard comfyui 绘图 ComfyUI vue nginx Go mqtt axios git windows html Nginx ApiCloud payment python concurrency JS
归档
  • 四月 2025 2
  • 三月 2025 3
  • 十月 2024 2
  • 五月 2024 6
  • 五月 2023 2
  • 四月 2023 8
  • 三月 2023 4
  • 十一月 2022 6
© 2017 - 2025 By Harry
搜索
数据加载中