3

我正在尝试为客户端从数据库重新创建 json。不幸的是,json 中的一些键是数字,在 javascript 中可以正常工作,但结果 PHP 一直将它们视为数字而不是关联数组。每个键用于一个文档。让我演示给你看:

PHP:

  $jsonobj;
  while ($row = mysql_fetch_assoc($ms)) {

            $key = strval($row["localcardid"]);
            $jsonobj[$key] = json_decode($row["json"]);
    }
    // $jsonobj ist still a numeric array
    echo json_encode($jsonobj);

生成的 json 应如下所示:

{
  "0": {
    "terd": "10",
    "id": 0,
    "text": "",
    "pos": 1,
    "type": 0,
    "divs": [
        {},
        {}
    ],
    "front": 1
 }
"1": {
     "terd": "10",
    "id": 0,
    "text": "",
    "pos": 1,
    "type": 0,
    "divs": [
        {},
        {}
    ],
    "front": 1
  }
}

一个明显的解决方案是保存整个 json 而不会拆分。然而,关于分贝这似乎并不明智。我希望能够单独访问每个文档。使用

 $jsonobj = array ($key => json_decode($row["json"]));

显然有效,但不幸的是只有一个键......

编辑:为了澄清* 在 php 中:有区别

array("a", "b", "c")      

   array ("1" => "a", "2" => "b", "3" => "c").

后者,当这样做时 $array["1"] = "a" 导致array("a")而不是array("1" => "a")

在这里回答

4

4 回答 4

2

尝试

echo json_encode((object)$jsonobj);
于 2012-07-26T22:13:38.700 回答
2

我相信如果您通过该JSON_FORCE_OBJECT选项,它应该像您想要的那样输出带有数字索引的对象:

$obj = json_encode($jsonObj, JSON_FORCE_OBJECT);

例子:

$array = array();

$array[0] = array('test' => 'yes', 'div' => 'first', 'span' => 'no');
$array[1] = array('test' => 'no', 'div' => 'second', 'span' => 'no');
$array[2] = array('test' => 'maybe', 'div' => 'third', 'span' => 'yes');

$obj = json_encode($array, JSON_FORCE_OBJECT);
echo $obj;

输出:

{
    "0": {
        "test": "yes",
        "div": "first",
        "span": "no"
    },
    "1": {
        "test": "no",
        "div": "second",
        "span": "no"
    },
    "2": {
        "test": "maybe",
        "div": "third",
        "span": "yes"
    }
}
于 2012-07-26T22:37:13.233 回答
0

只需将两者保存在数据库中的单个条目中:单独的字段值和整个 json 结构在单独的列中。这样,您可以通过单个字段进行搜索,并且仍然可以获得有效的 json 结构以便于处理。

于 2012-07-26T22:15:59.490 回答
0

要将数字设置为关联数组中的键,我们可以使用以下代码

$arr=array(); //declare array variable
$arr[121]='Item1';//assign Value
$arr[457]='Item2';
.
.
.
print_r($arr);//print value
于 2015-07-22T11:29:58.117 回答