2012-11-12 19 views
0

可能重复解析嵌套的JSON:
Nested json to php search listing在同一div

我试图解析一些JSON,我现在把一切都在一个页面上分析,但其过多信息放在一个页面上,我希望能够通过列出父对象“教会”来过滤,然后一旦父母被点击,我想孩子(嵌套)对象“轨道”被列出(基本上是为了过滤通过JSON),(想想你的iPod你点击一个艺术家(这是“chur CH“),那么这张专辑(这是”专辑),然后选择曲目(这是在JSON‘轨道’)

让我怎么做一个父对象是JSON解析的一个新的水平有关系吗?

,您可以访问http://ggcc.tv/JSON_Parsers/Music.php,看看有什么我到目前为止

请帮忙,谢谢。

PHP: http://www.godsgypsychristianchurch.net/music.json'; $ content = file_get_contents($ filepath); $ json = json_decode($ content,true);

$count = 0; 
    foreach ($json['rows'] as $row) { 
     ++$count; 

     echo "<h1>Row: {$count}</h1>"; 
     echo "Album: {$row[doc]['album']}<br />"; 
     echo "Church: {$row[doc]['church']}<br />"; 
     echo "Description: {$row[doc]['des']}<br />"; 
     echo "<img src=\"{$row['doc']['artwork']}\" alt=\"my image \" width=\"250\" /><br /><br />"; 

     $songCount = 0; 
     foreach ($row['doc']['tracks'] as $song) { 
      ++$songCount; 
      echo $song['name'] . ' - '; 

      $songUrl = $row['doc']['baseurl'] . urldecode($song['url']); 
      echo "<a href=\"{$songUrl}\">{$songUrl}</a><br />"; 
     } 
     echo '<br /><br />'; 
    } 

    exit; 
?> 

JSON(http://www.godsgypsychristianchurch.net/music.json):

{"total_rows":1,"offset":0,"rows":[ 

       {"id":"All Things Are Possible", 
"key":"All Things Are Possible", 
"doc":{"_id":"All Things Are Possible", 
"album":"All Things Are Possible", 
"artwork":"http://godsgypsychristianchurch.net/music_artwork/DEFAULT_COVER2.png", 
"baseurl":"http://www.godsgypsychristianchurch.net/music", 
"church":"Atlanta GA", 
"cityartwork":"http://www.ggcc.tv/LogoNE.png", 
"des":"All Things Are Possible from the Atlanta GA Church, Pastor Nick White", 
"tracks":[ 
    {"name":"1 Intro", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/01%20Intro.mp3"}, 

      {"name":"2 Wo si O Drom", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/02%20Wo%20si%20O%20drom.mp3"}, 

      {"name":"3 Nas Murrgo Shov", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/03%20Nas%20murrgo%20shov.mp3"}, 

      {"name":"4 To Cho Vos", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/04%20To%20cho%20vos.mp3"}, 

      {"name":"5 Tu Son Kai Sastridas", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/05%20Tu%20son%20kai%20sastridas.mp3"}, 

      {"name":"6 Now I Am Strong", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/06%20Now%20I%20am%20strong.mp3"}, 

      {"name":"7 Sorr Nevee", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/07%20Zorr%20nevee.mp3"}, 

      {"name":"8 Preaching", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/08%20Preaching.mp3"}, 

      {"name":"9 Arkadyan Amey", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/09%20Arkadyan%20amey.mp3"}, 

      {"name":"10 O Christo Ka Wudarr", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/10%20O%20Christo%20ka%20wudarr.mp3"}, 

      {"name":"11 Eloi, Eloi", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/11%20Eloi%2C%20Eloi.mp3"}, 

      {"name":"12 Amadow Dell", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/12%20Amadow%20Dell.mp3"}, 

      {"name":"13 Sastiar Amey Devla", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/13%20Sastiar%20amey%20Devla.mp3"}, 

      {"name":"14 Tu Skepeese", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/14%20Tu%20skepeese.mp3"}, 

      {"name":"15 Dov Ma Godgee", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/15%20Dov%20ma%20godgee.mp3"}, 

      {"name":"16 The Lord is my strength", 
     "url":"/Atlanta%20GA/All%20things%20are%20possible/16%20The%20Lors%20is%20my%20strength.mp3"} 
    ]}}, 
+0

上市(概览)和细节视图。从你的问题来看,你真的不明白什么阻止了你想要做什么。你在哪里碰到路障? – hakre

回答

1

说你想教会链接到他们的音乐,首先将通过循环和教会的名字,摆阵,重复数据删除它们,把它们打印出来,将它们链接像

$churches = array(); 

foreach ($json['rows'] as $row) 
{ 
    if (!in_array($row[doc]['church'], $churches)) 
     $churches[] = $row[doc]['church']; 
} 

foreach ($churches as $church) 
{ 
    print '<a href="getchurchmusic.php?churchname=' . urlencode($church) . '><br />' . htmlentities($church) . '</a>'; } 
} 

然后getchurchmusic.php你现在正在做的,但在教会过滤什么

foreach ($json['rows'] as $row) 
    { 
      if ($_GET['churchname'] == $row[doc]['church']) 
      { 
        /* print out songs or whatever */ 

      } 
    } 

这不是测试,这不是有效的 - 你应该把所有这些数据在数据库,缓存文件等,而不是XSS免费的,这只是粗略的代码给你一个起点