"tes-6ren">
gpt4 book ai didi

PHP Api 接收 JSON 数据

转载 作者:行者123 更新时间:2023-12-05 03:12:02 25 4
gpt4 key购买 nike

我正在尝试使用 PHP 和 JSON 创建一个 API,但是我一直坚持在请求的接收/API 端提取 JSON。

所以我在交易的客户端端这样做:

$data = array("test" => "test");                                                                    
$data_string = json_encode($data);
$ch = curl_init('https://..../api/v1/functions? key=TPO4X2yCobCJ633&aid=9&action=add');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);

$return = curl_exec($ch);

但是我如何在交易的服务器(接收)端(在我的 API 内)接收和提取 POSTed 数据?

总结:

我的意思是我现在有一个正在向 API 发送 JSON 文件的客户端,我不明白的是如何让 API 端查看和提取/查看数据

最佳答案

在接收方,您需要从 PHP input stream 读取,然后解码:

<?php

// read the incoming POST body (the JSON)
$input = file_get_contents('php://input');

// decode/unserialize it back into a PHP data structure
$data = json_decode($input);

// $data is now the same thing it was line 1 of your given sample code

如果你想更简洁,显然你可以嵌套这些调用:

<?php
$data = json_decode(file_get_contents('php://input'));

关于PHP Api 接收 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35118621/

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