向指定URL发送JSON数据
习惯了使用CURL的方式,发送GET 和POST 请求
今天需要使用POST 发送JSON数据的
发送方代码:
$data = '{"sign":"111","data":{"failedDesc":"","amount":"50.00","callbackInfo":"sssss"}}'; $url = 'http://127.0.0.1/dev/Test/url.php'; // performs the HTTP POST $opts = array ('http' => array ( 'method' => 'POST', 'header' => 'Content-type: application/json', 'content' => $data )); $context = stream_context_create($opts); $response = ''; if ($fp = fopen($url, 'r', false, $context)) { while($row = fgets($fp)) { $response.= trim($row)."\n"; } } var_dump($response);die;
接收方代码:
echo file_get_contents('php://input');
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步