gpt4 book ai didi

PHP API 在 POST 中获取空的 JSON 请求

转载 作者:可可西里 更新时间:2023-11-01 00:58:05 24 4
gpt4 key购买 nike

<分区>

我正在尝试在 php 中开发小型 API 代码,它将使用 PHP curl(从客户端)以 json 格式发送 POST 请求。在接收端(在服务器端)我想解析请求并处理它。但在接收方,它在 post 字段中给了我空数组。下面是我的代码

客户端:

<?php

$data = array("name" => "Hagrid", "age" => "36");
$data_string = json_encode($data);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, "xdata=".$data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
echo $result = curl_exec($ch);

?>

在服务器端:

<?php

print_r($_POST);

?>

Blockquote Array ( ) Blockquote

它总是在服务器端给我空的 POST 数组。我做错了什么还是有另一种方法来解析请求?请指导我。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com