dongmangwei3822 2013-08-04 13:18
浏览 172
已采纳

删除数组中的元素[重复]

This question already has an answer here:

I'm developing an API which produces results in JSON format, when I encoded results into JSON using PHP, it shows every element in the row of the array. I use MySQL to grab data.

foreach($search as $item) {
    echo json_encode($item);
}

This will output

{"id":"1","name":"A","tag":"a A","url":"A"} {"id":"2","name":"B","tag":"b B","url":"B"}

Is there a way to dump TAG element so it won't appear in JSON encoded results?

</div>
  • 写回答

2条回答 默认 最新

  • dsm17496 2013-08-04 13:19
    关注
    foreach($search as $item) {
        unset($item['tag']);
        echo json_encode($item);
    }
    

    you can do it by unset()

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?