php post json参数的传递和接收处理方法

开发技术 作者: 2024-08-19 04:15:02
今天小编就为大家分享一篇php post json参数的传递和接收处理方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

页面1 ,PHP传递json参数的页面:

1.PHP

$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."
";
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 "


";
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json,true));
 
?>

页面2,参数接收处理:

2.PHP

" 234 ",'b'=>2)); echo $data; ?>

以上这篇PHP post json参数的传递和接收处理方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_64739.html
php post json