将 JSON 字符串发送到需要对象数组的 API 时出现问题
Problem sending a JSON string to an API requiring an array of objects
我有一些 PHP 格式的数据,我想将其发送到 API 格式的 JSON 中。
我的数据是一个 PHP 数组,我将其转换为 JSON 对象,然后转换为 JSON 字符串,以便我可以发送。但是 API 需要一个对象数组,如下面的代码所示,我如何编写代码以适应其格式
以JSON格式编写的数组的要求
{
"children":[
{"child_name":"abc","child_dob":"2015-05-23"},
{"child_name":"efg","child_dob":"2016-09-13"}
]
}
我的PHP代码
//Convert the PHP array to a JSON object
$child =(object)$children;
//Convert JSON object to a JSON string to send to server
$ch = json_encode($child);
dd($ch);
//result in browser
"{"child_name":"mnmbmb","child_dob":"2018-10-30"}"
无需将其转换为对象。试试这个
$data=array();
$data['children'] =$children;
//Convert JSON object to a JSON string to send to server
$ch = json_encode($data);
dd($ch);
我有一些 PHP 格式的数据,我想将其发送到 API 格式的 JSON 中。 我的数据是一个 PHP 数组,我将其转换为 JSON 对象,然后转换为 JSON 字符串,以便我可以发送。但是 API 需要一个对象数组,如下面的代码所示,我如何编写代码以适应其格式
以JSON格式编写的数组的要求
{
"children":[
{"child_name":"abc","child_dob":"2015-05-23"},
{"child_name":"efg","child_dob":"2016-09-13"}
]
}
我的PHP代码
//Convert the PHP array to a JSON object
$child =(object)$children;
//Convert JSON object to a JSON string to send to server
$ch = json_encode($child);
dd($ch);
//result in browser
"{"child_name":"mnmbmb","child_dob":"2018-10-30"}"
无需将其转换为对象。试试这个
$data=array();
$data['children'] =$children;
//Convert JSON object to a JSON string to send to server
$ch = json_encode($data);
dd($ch);