0
$sql = "SELECT * FROM `scripts` LIMIT 0, 30 ";   
$result = mysql_query($sql) or die ('Error updating database: ' . mysql_error()); 
$json = array(); 
if(mysql_num_rows($result)) { 
    while($row=mysql_fetch_row($result)) { 
        $json['table data'][]=$row;
    } 
 } 
$encoded = json_encode($json); 
echo $encoded; 

这是我的输出:

{"table data":[["1","test","30","13"],["2","test2","40","14"]]}

如何访问数组的单个部分,它是一个数组数组?我先解码吗?

4

3 回答 3

1

尝试解码

$json = '{"foo-bar": 12345}';

$obj = json_decode($json);
print $obj->{'foo-bar'}; // 12345

再见

于 2013-04-11T21:48:37.927 回答
0

你用

 $json['table data'][$id]

其中 $id 是您要访问的行

所以例如

$json['table data'][0][1]  == "test"
$json['table data'][1][1]  == "test2"
于 2013-04-11T21:48:43.167 回答
0

当您将数据添加到数组中时,创建一个数组。

$json['table data'][] = array($row);
于 2013-04-11T21:58:20.787 回答