问题描述 webman2.1+php8.4 config 函数 读取不到 config/plugin/overtrue/wechat.php 文件的配置 是我缺少什么配置吗? $config = config('plugin.overtrue.wechat.open_platform', []); print_r($config);//结果是空数组 //config/plugin/overtrue/wechat....
问题描述 这里写问题描述 webman2.0+thinkorm 数据查询会出现 SHOW FULL COLUMNS 1、在 runtime/schema 目录下没有生成 表结构缓存 2、php windows.php 启动后 第一次执行查询 就会出现两次 SHOW FULL COLUMNS 第二次执行查询,不会出现 3、ctrl+c,然后 php windows.php 启动后 ,又会出现2次 SHOW FUL...
问题描述 webman1.5.19+thinkorm2.0.62+webman/log1.2.1 无法记录执行的sql日志,请问大佬是我哪里配置有问题吗? 这里写问题描述 Webman-framework v1.5.19 topthink/think-orm 2.0.62 think orm webman/think-orm 1.1.3 webman/lo...
问题描述 cookie设置失败,再问答中搜索已解决的看到需要 $response = response(); $response->cookie('name', $stringvalue); return $response; 但是 我这边接口登录成功后 不要 return $response; 要将登录信息返回出去 需要: //设置必要cookie $response = response(); $respo...
问题描述 1、$request->post('name',''); 有安全过滤吗(类似于thinkphp 的 requst类 public function get($name = '', $default = null, $filter = '')) 如果没有 能不能自己重写一个类继承 request类,然后增加过滤...