基本上,我正在尝试遍历所有帖子并找到它们合适的标签。$id 变量是返回的所有帖子 ID 的数组。因此,第一个 for 循环应该是查找帖子的所有标签,如果该帖子没有任何标签,请将标签设置为 0(对于 $post_tags['THIS IS THE POST ID'])
如果帖子没有标签,这一切似乎都很好,它只会在旁边打印一次“没有指定的标签”(如预期的那样)。但是,似乎正在发生的事情是,打印的标签是来自相应帖子的所有标签加上之前返回的帖子中的标签。它似乎正在添加已经返回的内容。
老实说,我不明白为什么要这样做,并且考虑到没有出现错误,我发现很难解决。任何帮助或指导将不胜感激!
if($stmt = $mysqli->prepare("SELECT username, avatar FROM members WHERE id = ? LIMIT 1")){
// Get the posts tags
if($tgs = $mysqli->prepare("SELECT tag FROM tags WHERE post_id = ?")){
for($i = 0; $i < count($id); $i++){
$tgs->bind_param('i', $id[$i]);
$tgs->execute();
$tgs->store_result();
$tgs->bind_result($tag);
while($tgs->fetch()){
$tags[] = $tag;
}
if($tgs->num_rows > 0){
$post_tags[$id[$i]] = $tags;
}else{
$post_tags[$id[$i]] = 0;
}
}
$tgs->close();
for($i = 0; $i < count($id); $i++){
$stmt->bind_param('i',$by[$i]);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($username, $avatar);
$stmt->fetch();
echo '<ul class="f_ul_subject" style="margin-top:3px">
<li class="f_cat_subject" style="font-size:10px;line-height:12px;">';
for($j = 0; $j < count($post_tags[$id[$i]]); $j++){
if($post_tags[$id[$i]] != 0){
echo '<a class="post_tag" href="http://localhost/Site/NetPerry/forum/search.php?v=' . $post_tags[$id[$i]][$j] . '&tags=true">
<span>' . $post_tags[$id[$i]][$j] . '</span>
</a>';
}else{
echo 'No specified tags';
}
}
echo '</li>
</ul>
</li>';
}
}
}