我正在将 wordpress 与 nextgen 画廊一起使用,我想从单独的 JSON 文件中的特定画廊 id 获取图像。到目前为止,我有这个代码,但这只是从给定的 ID 导出图像(在本例中为 7)。我知道一定有某种 foreach 函数,但我的 javascript 知识不会走那么远。
有人可以帮我解决这个问题吗?我到目前为止的代码:
mysql_connect("localhost","DB-NAME","DB-PASSWORD");
mysql_select_db("DB-NAME");
$result=mysql_query("SELECT filename FROM zs_ngg_pictures WHERE galleryid = '7' ORDER BY sortorder LIMIT 3");
while($row=mysql_fetch_assoc($result)){
$output[]=$row;
}
$fp = fopen('result.json', 'w');
fwrite($fp, json_encode($output));
fclose($fp);
echo json_encode($output);