PHP While Loop / Foreach循环

时间:2014-11-17 22:09:13

标签: php oop pdo

我有一个问题,以不同的方式来怀疑这段代码,因为它没有做我想做的事情。

我正在创建一个论坛列表,该列表将显示该类别下的部分。这就是问题,因为你可以看到我有一个If(){} Else {}语句,用于将信息放入我想要的列表中。问题是我需要在该类别下的最后一节添加一个特殊的类,它将被称为last-tr。现在我的问题是所有的信息都是在屏幕上显示的,但是这个类只适用于最后一行,现在是我正在寻找的所有类别的最后一行。

所以像这样,

Welcome Center
   Introduce Yourself
   Say Hello To our Admins (last-tr)

Game
   COD
   BF4 (last-tr)

Code
   PHP
   Java
   PDO (last-tr)

但是我的代码给了我的是

Welcome Center
   Introduce Yourself
   Say Hello To our Admins 

Game
   COD
   BF4 

Code
   PHP
   Java
   PDO (last-tr) <- Just that one.

这是代码

    <?php 
include '../../core/init.php'; 
include '../../includes/head.php';

//Getting Categories under Welcome

$db = DB::getInstance();
$user = New User();
$forum = New Forum();

$list = '';

$category = $db->query('SELECT * FROM forum_categories');
foreach ($category->results() as $category) {
    $list .= '<thead>';
    $list .= '<tr>';
    $list .= '<th class="titles">' . $category->title . '</th>';
    $list .= '<th>Last Post</th>';
    $list .= '<th>Topics</th>';
    $list .= '<th>Replies</th>';
    $list .= '</tr>';
    $list .= '</thead>';
    $list .= '<tbody>';
    $sections = $db->query("SELECT * FROM forum_section WHERE category_id = '$category->id'");
    foreach ($sections->results() as $section) {
        $x = 0;
        if ($x < $sections->count()) {
            $list .= '<tr>';
            $list .= '<td>';
            $list .= '<a href="/category.php?id='. $section->id .'">';
            $list .= '<img scr="/images/icons/iconmonstr/intro.png">';
            $list .= '</a>';
            $list .= '<a href="/category.php?id='. $section->id .'">' . $section->title . '</a>';
            $list .= '<span>' . $section->desc . '</span>';
            $list .= '</td>';
            $list .= '<td> Nasty </td>';
            $list .= '<td> 0 </td>';
            $list .= '<td> 0 </td>';
            $list .= '</tr>';
            $x++;
        }else {
            $list .= '<tr class="last-tr">';
            $list .= '<td>';
            $list .= '<a href="/category.php?id='. $section->id .'">' . $section->title . '</a>';
            $list .= '</td>';
            $list .= '<td> Nasty </td>';
            $list .= '<td> 0 </td>';
            $list .= '<td> 0 </td>';
            $list .= '</tr>';
        }
    }
    $list .= '</tbody>';
}
?>
<link rel="stylesheet" href="/css/fourms.css">
<title>Forums</title>
</head>
<body>
<?php include '../../includes/header.php'; ?>
    <section id="main_section">
        <section id="main_content">
            <div id="forum-section">
                <table class="forumlist">
                    <?php echo $list; ?>

                </table>
            </div>
        </section>
    </section>
<?php include('../../includes/footer.php'); ?>

2 个答案:

答案 0 :(得分:2)

你的if语句应该是if ($x < $sections->count()-1),因为从0开始,数组的最后一个索引总是count-1。

OR

您也可以在此处通过{1}}启动来解决此问题,因为您在旁边使用了$x计数器,因此它不会像您一样出现索引错误。换句话说:

foreach

但是选择第一个选项可能更直截了当。

答案 1 :(得分:1)

您正在测试您的整体课程,而不是班级中的数据 $ sections-&gt; count()计算所有部分,而不是您正在处理的一个部分中的条目 您需要测试单数部分的计数 所以,如果你有 $ sectionsAll = array(
sectionOne = array(1,2,3),
sectionTwo = array(1,2,3),
sectionThree = array(1,2,3)
);
您目前正在测试$ sectionsAll,您需要查看sectionOne,sectionTwo,sectionThree