php post 无参数怎么设置
2022-12-02 09:01:16
141
{{single.collect_count}}

php post无参数设置方法:1、通过ajax请求接口;2、客户端通过curl请求;3、在PHP服务端执行“file_get_contents("php://input");”。

php入门到就业线上直播课:进入学习
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API调试工具:点击使用

本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑

无参数名post数据客户端以及接口是如何实现的?

PHP版客户端:

1.第一种情况是客户端通过ajax请求接口。

 $.ajax({ type: 'POST', url: url , data: data , success: success , dataType: dataType});
登录后复制

2.第二种情况是客户端可以通过curl请求。

$ch = curl_init(); //设置URL,POST方式提交以及POST数据 curl_setopt($ch, CURLOPT_URL, $apiurl); curl_setopt($ch, CURLOPT_POST,1); curl_setopt($ch, CURLOPT_POSTFIELDS, "post数据");$result = curl_exec($ch);
登录后复制

PHP版服务端:

 $sendjson=file_get_contents("php://input"); print_r($sendjson);
登录后复制

推荐学习:《PHP视频教程

以上就是php post 无参数怎么设置的详细内容,更多请关注php中文网其它相关文章!

回帖
全部回帖({{commentCount}})
{{item.user.nickname}} {{item.user.group_title}} {{item.friend_time}}
{{item.content}}
{{item.comment_content_show ? '取消' : '回复'}} 删除
回帖
{{reply.user.nickname}} {{reply.user.group_title}} {{reply.friend_time}}
{{reply.content}}
{{reply.comment_content_show ? '取消' : '回复'}} 删除
回帖
收起
没有更多啦~
{{commentLoading ? '加载中...' : '查看更多评论'}}