03 2023 档案
摘要:tp6跨域访问最新写法 public function handle($request, Closure $next, ? array $header = []) { $header = !empty($header) ? array_merge($this->header, $header) :
阅读全文
摘要:微信小程序订阅2个消息模板需要注意的问题 1 必须2个不同类型模板 2 必须真机测试
阅读全文
摘要:function copyText(text){ var textValue = document.createElement('textarea'); textValue.setAttribute('readonly', 'readonly'); //设置只读属性防止手机上弹出软键盘 textVa
阅读全文
摘要:thinkphp6 配置redis 官方文档写法就是坑 自己实现一个吧 <?php class RedisClient { private static $instance = null; /** * Get a instance of MyRedisClient * * @param string
阅读全文