1

您好我正在尝试将 MySQL 查询结果作为列表输出,以便在每第五行之后我想创建一个新列表。我按照之前对我的一个类似问题提出的相同方式进行了操作,它将第五行之后的结果分开,但在每个新列表中,第一个元素与前一个列表中的最后一个元素相同。

我使用了这段代码:

/*there is a mysqli query before this*/
$i = 0;
$count = $res->num_rows;
echo '<ul>';
while($obj = $res->fetch_object()){
    $i++;
    $exturl = $obj->link;
    $extname = utf8_encode($obj->title);
    echo '<li><a class="URL" title="'.$extname.'" href="'.$exturl.'" target="_blank">'.$extname.'</a></li>';
    if($i % 5 == 0 && $i < $count){
        echo '</ul><ul><li><a class="URL" title="'.$extname.'" href="'.$exturl.'" target="_blank">'.$extname.'</a></li>';
    }
}
echo '</ul>';

问题是,我怎样才能避免重复?

4

4 回答 4

3

在条件句中附加最后一个 li 有什么意义?

while($obj = $res->fetch_object()){
    $i++;
    $exturl = $obj->link;
    $extname = utf8_encode($obj->title);
    echo '<li><a class="URL" title="'.$extname.'" href="'.$exturl.'" target="_blank">'.$extname.'</a></li>';
    if($i % 5 == 0 && $i > 0 && $i < $count){
        echo '</ul><ul>';
    }
}

由于您已经在 if $i % 5 语句上方回应了它。

于 2012-10-25T21:47:29.387 回答
2

解决方案(取决于返回的行数)可能是array_chunk在呈现列表之前对您的结果进行处理,从而产生一种简单的分页形式。

$results = array();

while ($obj = $res->fetch_object()) {
  $results[]= $obj;
}

// Break results into sub-lists of 5 items
$lists = array_chunk($results, 5);

foreach ($lists as $list) {
  echo "<ul>"
  foreach ($list as $obj) {
    $exturl = $obj->link;
    $extname = utf8_encode($obj->title);
    echo '<li><a class="URL" title="',$extname,'" href="', $exturl, '"  target="_blank">', $extname, '</a></li>';
  }
  echo "</ul>"
}

这需要您将整个结果集加载到内存中,但它比尝试在单个循环中有条件地关闭和重新打开列表要清晰得多。

于 2012-10-25T21:49:34.473 回答
0
$args=array('orderby' => 'title','order' => 'ASC','posts_per_page'=>-1 ,'post_type'=>'Product');
$loop = new WP_Query($args);'
$counter = 1;
$reccounter=1;
$total_items = count($loop);
$ColCounter=($loop->post_count)/3;
if(!empty($loop)){ 
print '<ul style="float:left;list-style:none;" class="productList">';
while ( $loop->have_posts() ) : $loop->the_post(); 
$reccounter++;
$this_char=strtoupper(substr($loop->post->post_title,0,1));                         
if ($this_char != $last_char) { $last_char = $this_char;
$counter++;
echo '<h2 class="productTitle">'.$last_char.'</h2>';
} 
if( $ColCounter<=$reccounter){echo "</ul><ul style='float:left;list-style:none;' class='productList'>";
$reccounter=1;
}   
echo"<li class='productListpad'><a href=".get_permalink($loop->post->ID).   "title=".esc_attr($loop->post->post_title ? $loop->post->post_title :        $loop->post->ID).">".esc_attr($loop->post->post_title ? $loop->post->post_title : $loop->post->ID)."</a></li>";
endwhile; echo"</ul>";
}wp_reset_query(); 
于 2014-02-04T13:18:52.343 回答
-1

解决方案是在循环中移动 if 语句:

改成这样:

while($obj = $res->fetch_object()){
$i++;
$exturl = $obj->link;
$extname = utf8_encode($obj->title);
    if($i % 5 == 0 && $i < $count){
        echo '</ul><ul><li><a class="URL" title="'.$extname.'" href="'.$exturl.'" target="_blank">'.$extname.'</a></li>';
} else { 
echo '<li><a class="URL" title="'.$extname.'" href="'.$exturl.'" target="_blank">'.$extname.'</a></li>'; 
}
}
于 2012-10-25T21:54:44.453 回答