图中,我当然知道获取post内容,只能从Request对象获取,所以 var_dump(file_get_contents('php://input'));肯定是null
大量使用了 $_GET,$_POST 原生参数,和 php://input 咋办,
https://www.workerman.net/doc/webman/components/wechat.html 手册有easywechat用法
谢谢,我记得上次看这个手册的时候,是没有解决适配方案的
$_GET $_POST 可以模拟, $_GET = $request->get(); $_POST = $request->post();
file_get_contents('php://input') 这个没办法了,只能在源码里用 request()->rawBody(); 替换了
webman手册已经更新了,https://www.workerman.net/doc/webman/components/wechat.html
https://www.workerman.net/doc/webman/components/wechat.html
手册有easywechat用法
谢谢,我记得上次看这个手册的时候,是没有解决适配方案的
$_GET $_POST 可以模拟,
$_GET = $request->get();
$_POST = $request->post();
file_get_contents('php://input')
这个没办法了,只能在源码里用 request()->rawBody(); 替换了
webman手册已经更新了,https://www.workerman.net/doc/webman/components/wechat.html