首页
下载
文档
问答社区
视频
捐赠
源代码
AI 助理
赞助商
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
商业产品
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
登录
注册
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
http_server的request没有post属性
$http->on('request', function ($request, $response) { echo $request->post['uid']."<br>"; var_dump($request); } 结果是 object(swoole_http_request)#3 (3) { ["header"]=> array(8) { ["host"]=> string(17) "192.168.1.38:9503" ["user-agent"]=> string(82) "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0" ["accept"]=> string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ["accept-language"]=> string(35) "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3" ["accept-encoding"]=> string(13) "gzip, deflate" ["connection"]=> string(10) "keep-alive" ["content-type"]=> string(33) "application/x-www-form-urlencoded" ["content-length"]=> string(2) "17" } ["server"]=> array(9) { ** ["request_method"]=> string(4) "POST"** ["request_uri"]=> string(1) "/" ["path_info"]=> string(1) "/" ["request_time"]=> int(1435571596) ["server_port"]=> int(9503) ["remote_port"]=> int(55520) ["remote_addr"]=> string(13) "192.168.1.163" ["server_protocol"]=> string(8) "HTTP/1.1" ["server_software"]=> string(18) "swoole-http-server" } ["fd"]=> int(1) } PHP Notice: Undefined property: **swoole_http_request::$post** in /zhanglei/https.php on line 5 为什么说swoole_http_request没有post属性呢?
发布于8年前 · 0 次浏览 · 来自
提问
☞
☞奈何桥☜
$http->on('request', function ($request, $response) { echo $request->post['uid']."<br>"; var_dump($request); } 结果是 object(swoole_http_request)#3 (3) { ["header"]=> array(8) { ["host"]=> string(17) "192.168.1.38:9503" ["user-agent"]=> string(82) "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0" ["accept"]=> string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ["accept-language"]=> string(35) "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3" ["accept-encoding"]=> string(13) "gzip, deflate" ["connection"]=> string(10) "keep-alive" ["content-type"]=> string(33) "application/x-www-form-urlencoded" ["content-length"]=> string(2) "17" } ["server"]=> array(9) { ** ["request_method"]=> string(4) "POST"** ["request_uri"]=> string(1) "/" ["path_info"]=> string(1) "/" ["request_time"]=> int(1435571596) ["server_port"]=> int(9503) ["remote_port"]=> int(55520) ["remote_addr"]=> string(13) "192.168.1.163" ["server_protocol"]=> string(8) "HTTP/1.1" ["server_software"]=> string(18) "swoole-http-server" } ["fd"]=> int(1) } PHP Notice: Undefined property: **swoole_http_request::$post** in /zhanglei/https.php on line 5 为什么说swoole_http_request没有post属性呢?
赞
0
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
2016-10-27
a
augustdai
已经解决 用了正在开发的 1.7.18版本
赞
0
回复
微信公众号
热门内容
作者其它话题
- tcp服务器连接数据量大时失去连接
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。