PHP使用Http Post请求发送Json对象数据代码解析
程序员文章站
2022-04-06 10:59:16
因项目的需要,php调用第三方 java/.net 写好的 restful api,其中有些接口,需要 在发送 post 请求时,传入对象。http中传输对象,最好的表现形式莫过于json字符串了,但...
因项目的需要,php调用第三方 java/.net 写好的 restful api,其中有些接口,需要 在发送 post 请求时,传入对象。
http中传输对象,最好的表现形式莫过于json字符串了,但是作为参数的接收方,又是需要被告知传过来的是json!
其实这不难,只需要发送一个 http content-type头信息即可,即 “content-type: application/json; charset=utf-8”,参考代码如下:
<?php /** * php发送json对象数据 * * @param $url 请求url * @param $jsonstr 发送的json字符串 * @return array */ function http_post_json($url, $jsonstr) { $ch = curl_init(); curl_setopt($ch, curlopt_post, 1); curl_setopt($ch, curlopt_url, $url); curl_setopt($ch, curlopt_postfields, $jsonstr); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_httpheader, array( 'content-type: application/json; charset=utf-8', 'content-length: ' . strlen($jsonstr) ) ); $response = curl_exec($ch); $httpcode = curl_getinfo($ch, curlinfo_http_code); curl_close($ch); return array($httpcode, $response); } $url = "http://52php.cnblogs.com"; $jsonstr = json_encode(array('a' => 1, 'b' => 2, 'c' => 2)); list($returncode, $returncontent) = http_post_json($url, $jsonstr);
api服务端端接收客户端传过来的 “content-type: application/json; charset=utf-8”头信息后,再将 http body 数据(即 json字符串)转换成 类对象!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
PHP使用Http Post请求发送Json对象数据代码解析
-
速战速决 6 - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换
-
速战速决 (6) - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换 - webabcd
-
速战速决 (6) - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换 - webabcd
-
PHP使用Http Post请求发送Json对象数据代码解析
-
速战速决 6 - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换