php post json参数的传递和接收处理方法
程序员文章站
2022-05-14 08:20:43
页面1 ,php传递json参数的页面:
1.php
function http_post_data($url, $data_strin...
页面1 ,php传递json参数的页面:
1.php
<? function http_post_data($url, $data_string) { $ch = curl_init(); curl_setopt($ch, curlopt_post, 1); curl_setopt($ch, curlopt_url, $url); curl_setopt($ch, curlopt_postfields, $data_string); curl_setopt($ch, curlopt_httpheader, array( 'content-type: application/json; charset=utf-8', 'content-length: ' . strlen($data_string)) ); ob_start(); curl_exec($ch); $return_content = ob_get_contents(); //echo $return_content."<br>"; ob_end_clean(); $return_code = curl_getinfo($ch, curlinfo_http_code); // return array($return_code, $return_content); return $return_content; } $url = "http://127.0.0.1/2.php"; $data = json_encode(array('a'=>"weqweqwe", 'b'=>2)); //list($return_code, $return_content) = http_post_data($url, $data); $aaa = http_post_data($url, $data); //print_r($aaa); echo $aaa; $ccc=json_decode($aaa); print_r($ccc); echo $ccc->b; echo "<hr>"; $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($json,true)); ?>
页面2,参数接收处理:
2.php
<? $postdata = file_get_contents('php://input'); echo $postdata; $data = json_encode(array('a'=>" 234 ", 'b'=>2)); echo $data; ?>
以上这篇php post json参数的传递和接收处理方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: PHP封装的非对称加密RSA算法示例
下一篇: Python for循环中的陷阱详解
推荐阅读
-
JSP页面中文参数的传递(get和post方法分析)
-
php post json参数的传递和接收处理方法
-
AngularJS下$http服务Post方法传递json参数的实例
-
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器
-
requests.post()方法中data和json参数的使用
-
PHP如何接收post传递的json数据
-
asp.net MVC接收前端传递的复杂json对象的简单处理方法
-
AngularJS使用Post方法传递json参数的思路(附代码)
-
AngularJS下$http服务Post方法传递json参数的实例
-
web开发N例-案例3:使用post和get方法在php和html间传递参数