我正在尝试从PHP数组创建JSON对象。该数组如下所示:
$post_data = array('item_type_id' => $item_type,
'string_key' => $string_key,
'string_value' => $string_value,
'string_extra' => $string_extra,
'is_public' => $public,
'is_public_for_contacts' => $public_contacts);
编码JSON的代码如下所示:
$post_data = json_encode($post_data);
最后,JSON文件应该看起来像这样:
{
"item": {
"is_public_for_contacts": false,
"string_extra": "100000583627394",
"string_value": "value",
"string_key": "key",
"is_public": true,
"item_type_id": 4,
"numeric_extra": 0
}
}
如何将创建的JSON代码封装在“项目”中:{JSON CODE HERE}。
JSON_FORCE_OBJECT
中json_encode($arr, JSON_FORCE_OBJECT)