在php中未设置编码数组后没有索引的json

时间:2013-08-14 13:48:06

标签: php arrays json encode array-unset

我希望有人能帮助我。我的json没有编入索引(任何元素上面没有任何键)

[
{
"nome":"LABORGHINI GALLARDO",
"descrizione":"LAMBORGHINI GALLARDO ED. NERA- ANNO 2007- ",
"indirizzo_pubblicato":"autocaricateeea\/LABORGHINI GALLARDO31072013-023853\/LABORGHINI GALLARDO31072013-023853.json",
"indirizzo_immagine_copertina":"autocaricateeea\/LABORGHINI GALLARDO31072013-023853\/IMG_1414 (600x448).jpg",
"indirizzo_paginaauto":"autocaricateeea\/LABORGHINI GALLARDO31072013-023853\/index.html"
},
{
"nome":"RENAULT MEGANE",
"descrizione":"RENAULT MEGANE -ANNO 2006-DIESEL-CC. 1461",
"indirizzo_pubblicato":"autocaricateeea\/RENAULT MEGANE31072013-024103\/RENAULT MEGANE31072013-024103.json",
"indirizzo_immagine_copertina":"autocaricateeea\/RENAULT MEGANE31072013-024103\/P1080949 (600x450).jpg",
"indirizzo_paginaauto":"autocaricateeea\/RENAULT MEGANE31072013-024103\/index.html"
},
{
"nome":"FORD MONDEO",
"descrizione":"FORD MONDEO SINISTRATA- ANNO 2009- DIESEL- CC. 1997-",
"indirizzo_pubblicato":"autocaricateeea\/FORD MONDEO31072013-045216\/FORD MONDEO31072013-045216.json",
"indirizzo_immagine_copertina":"autocaricateeea\/FORD MONDEO31072013-045216\/P1080971 (600x450).jpg",
"indirizzo_paginaauto":"autocaricateeea\/FORD MONDEO31072013-045216\/index.html"
}
]

但是在使用php删除元素后,json显示如下:

{
"1":     //   <--- **** add a key before an element
{
"nome":"Fiat Punto ",
"descrizione":"Fiat Punto Bianca",
"indirizzo_pubblicato":"autocaricateeea\/Fiat Punto 14072013-042703\/Fiat Punto 14072013-042703.json",
"indirizzo_immagine_copertina":"autocaricateeea\/Fiat Punto 14072013-042703\/P1080713 (600x450).jpg",
"indirizzo_paginaauto":"autocaricateeea\/Fiat Punto 14072013-042703\/index.html"
},
...........
...........
...........

如何在json元素之前看到有一个键。 我知道这种行为是由未设置(PHP json_encode as object after PHP array unset())引起的。 有一种方法可以防止这种行为吗?

提前致谢

MANUEL RAGAZZINI

6 个答案:

答案 0 :(得分:1)

最好的方法是,

$json_arr = array_values($json_arr);

答案 1 :(得分:1)

虽然您已在客户端解决了您的问题,但我认为使用PHP显示我的解决方案是有帮助的,我的想法是构建一个新数组并排除不需要的项目,这样您就不会有未设置引起的索引问题,如下所示:

$new_nodes= array();
for ($j = 0; $j < count($composition->nodes); $j++)
{
   //exclude some nodes
   if ($id!= $composition->nodes[$j]->id)
   {
      // store only the nodes that you want:
      array_push($new_nodes, $composition->nodes[$j]);
   }
}
// and finally, use the new modified nodes array:
$composition->nodes= $new_nodes;

答案 2 :(得分:1)

在找到这个解决方案之前,

遇到了同样的问题:

除了array_values技术之外,还可以使用array_splice并删除一个元素并在一个步骤中重新索引:

unset($a[1]);

相反:

array_splice($a, 1, 1);

引自此处:https://stackoverflow.com/a/3869219/4809658

答案 3 :(得分:0)

为什么需要阻止此行为?当您将json转换为PHP数组时,无论JSON格式如何都将成为索引数组(具有您显示的数字)。

如果编号不正确,请使用http://php.net/manual/en/function.array-values.php进行修复。

答案 4 :(得分:0)

使用此PHP脚本重新生成json

<?php
  $arr = array
  (array('nome' => 'LABORGHINI GALLARDO',
     'descrizione' => 'LAMBORGHINI GALLARDO ED. NERA- ANNO 2007-',
     'indirizzo_pubblicato' => 'autocaricateeea/LABORGHINI GALLARDO31072013-023853/LABORGHINI GALLARDO31072013-023853.json',
     'indirizzo_immagine_copertina' => 'autocaricateeea/LABORGHINI GALLARDO31072013-023853/IMG_1414 (600x448).jpg',
     'indirizzo_paginaauto' => 'autocaricateeea/LABORGHINI GALLARDO31072013-023853/index.html'),
   array('nome' => 'RENAULT MEGANE',
     'descrizione' => 'RENAULT MEGANE -ANNO 2006-DIESEL-CC. 1461',
     'indirizzo_pubblicato' => 'autocaricateeea/RENAULT MEGANE31072013-024103/RENAULT MEGANE31072013-024103.json',
     'indirizzo_immagine_copertina' => 'autocaricateeea/RENAULT MEGANE31072013-024103/P1080949 (600x450).jpg',
     'indirizzo_paginaauto' => 'autocaricateeea/RENAULT MEGANE31072013-024103/index.html'),
   array('nome' => 'FORD MONDEO',
     'descrizione' => 'FORD MONDEO SINISTRATA- ANNO 2009- DIESEL- CC. 1997-',
     'indirizzo_pubblicato' => 'autocaricateeea/FORD MONDEO31072013-045216/FORD MONDEO31072013-045216.json',
     'indirizzo_immagine_copertina' => 'autocaricateeea/FORD MONDEO31072013-045216/P1080971 (600x450).jpg',
     'indirizzo_paginaauto' => 'autocaricateeea/FORD MONDEO31072013-045216/index.html')
  );
  $arr_json = json_encode($arr);
  var_dump($arr_json);
?>

优选地,可以用JS解析JSON,以便访问所需的汽车。无需使用PHP修改JSON。

答案 5 :(得分:0)

我搜索并试图实现我在我的问题中搜索的行为,但我没有发现任何东西。我认为,就像你可以看到in this answer一样,unset函数会为数组添加索引,因为JSON_encode不支持带孔的数组。所以,为了解决我的问题,我用jQuery函数加载JSON文件,用jQuery删除元素,我调用ajax函数删除链接在json文件中包含的地址的文件:

$.getJSON('loadauto.json', function(result) {
var y =  result;
    $.each(result, function(i, field){
        if(field.indirizzo_paginaauto == x){
              delete result[i];
        }
    });
    $.ajax({
            async: true,
        cache: false,
        type: 'POST',
        url: 'deleteauto.php',
        data: { nuovofilejson: y, indirizzo: x},
        success: function(data) {
            alert ("Auto cancellata definitivamente");
        },
        error: function(data) {
            alert ("Error");
        }
    });
}