我正在尝试用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代码封装在“item”中:{JSON CODE HERE}。
答案 0 :(得分:142)
$post_data = json_encode(array('item' => $post_data));
但是,由于您似乎希望输出为“{}
”,因此最好通过传递JSON_FORCE_OBJECT
常量来强制json_encode()
强制编码为对象。 / p>
$post_data = json_encode(array('item' => $post_data), JSON_FORCE_OBJECT);
“{}
”括号指定一个对象,根据JSON规范,“[]
”用于数组。
答案 1 :(得分:53)
虽然这里发布的其他答案有效,但我发现以下方法更自然:
$obj = (object) [
'aString' => 'some string',
'anArray' => [ 1, 2, 3 ]
];
echo json_encode($obj);
答案 2 :(得分:25)
你的php数组中只需要另一个图层:
$post_data = array(
'item' => 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
)
);
echo json_encode($post_data);
答案 3 :(得分:0)
$post_data = [
"item" => [
'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
]
];
$post_data = json_encode(post_data);
$post_data = json_decode(post_data);
return $post_data;
答案 4 :(得分:0)
您可以对通用对象进行json编码。
$post_data = new stdClass();
$post_data->item = new stdClass();
$post_data->item->item_type_id = $item_type;
$post_data->item->string_key = $string_key;
$post_data->item->string_value = $string_value;
$post_data->item->string_extra = $string_extra;
$post_data->item->is_public = $public;
$post_data->item->is_public_for_contacts = $public_contacts;
echo json_encode($post_data);