PHP json_encode问题

时间:2012-08-31 18:45:42

标签: php javascript json parse-platform

我有一堆值和一个PHP数组,我需要将它转换为JSON值,以便通过CURL发布到parse.com

问题是PHP数组被转换为JSON对象(字符串作为键和值,vs字符串作为值)

我最终得到了

{"showtime":{"Parkne":"1348109940"}}

而不是

{"showtime":{Parkne:"1348109940"}}

并解析抱怨这是一个对象而不是数组,因此不会接受它。

作为

{"showtime":{"Parkne":"1348109940"}}

是一个JSON对象(key = a string

无论如何使用json_encode执行此操作?或者一些解决方案?

4 个答案:

答案 0 :(得分:6)

这是JSON规范:必须引用对象键。虽然您的第一个未加引号的版本是有效的Javascript,所以是引用的版本,并且两者都将在任何Javascript引擎中进行相同的解析。但在JSON中,必须引用键。 http://json.org


跟进:

显示您如何定义数组,除非上面的示例是您的数组。这一切都取决于你如何定义你正在编码的PHP结构。

// plain array with implicit numeric keying
php > $arr = array('hello', 'there');
php > echo json_encode($arr);
["hello","there"]   <--- array

// array with string keys, aka 'object' in json/javascript
php > $arr2 = array('hello' => 'there');
php > echo json_encode($arr2);
{"hello":"there"} <-- object

// array with explicit numeric keying
php > $arr3 = array(0 => 'hello', 1 => 'there');
php > echo json_encode($arr3);
["hello","there"]  <-- array

// array with mixed implicit/explicit numeric keying
php > $arr4 = array('hello', 1 => 'there');
php > echo json_encode($arr4);
["hello","there"] <-- array

// array with mixed numeric/string keying
php > $arr5 = array('hello' => 'there', 1 => 'foo');
php > echo json_encode($arr5);
{"hello":"there","1":"foo"}   <--object

答案 1 :(得分:2)

盲目点击......我的印象是你的PHP数据结构不是你想要的那个。你可能有这个:

$data = array(
    'showtime' => array(
        'Parkne' => '1348109940'
    )
);

......实际上需要这个:

$data = array(
    array(
        'showtime' => array(
            'Parkne' => '1348109940'
        )
    )
);

随意编辑问题并提供预期输出的样本。

答案 2 :(得分:0)

您可以使用json_encode将数组转换为JSON 假设您的数组不为空,您可以这样做

 $array=();
 $json = json_encode($array);
 echo $json;

答案 3 :(得分:0)

听起来你需要把你的单个对象包装成一个数组。

试试这个:

// Generate this however you normally would
$vals  = array('showtime' => array("Parkne" => "1348109940"));

$o = array(); // Wrap it up ...
$o[] = $vals; // ... in a regular array

$post_me = json_encode($o);