1

我有一个用 PHP 和 MySQL 编写的新在线商店。

<div class="content-area">
<div class="page-heading">
<h1>Store</h1>
</div>
<p style="padding-top: 5px;"><strong>You are here:</strong> <a href="<?php echo $cls->root(); ?>/">Home</a> &raquo; Store</p>
<table border="0" cellpadding="0" cellspacing="0" width="500">
<?php
$categories=mysql_query("SELECT * FROM categories WHERE parent='0' ORDER by owner ASC, title ASC");
while($categoriesRow=mysql_fetch_array($categories)) {
$categoriesSub=mysql_query("SELECT * FROM categories WHERE parent='$categoriesRow[id]'");
?>
<tr>
<td valign="top">
<div class="product_list">
<div class="image_product">
<img alt="<?php echo $categoriesRow['title']; ?>" src="<?php echo $cls->truska(true); ?>/theme_section_image.gif" border="0" style="vertical-align: middle;" />
</div>
<div>
<h3 class="product"><a href="<?php echo $cls->root(); ?>/category/<?php echo $categoriesRow['permalink']; ?>/" target="_self"><?php echo $categoriesRow['title']; ?></a> <?php if(mysql_num_rows($categoriesSub) > 0) { ?>(<?php while($categoriesSubRow=mysql_fetch_array($categoriesSub)) {  }?>)<?php } ?></h3>
</div>
</div>
</td>
</tr>
<tr>
<td class="dotted_line_blue" colspan="1">
<img src="<?php echo $cls->truska(true); ?>/theme_shim.gif" height="1" width="1" alt=" " />
</td>
</tr>
<?php
}
?>
</table>
</div>

我的第二个 While 循环在哪里,我需要计算出最后一个结果是什么,所以我可以在我的 while 循环中省略一个逗号。

它将显示为“乐高(乐高城市,乐高星球大战)”,但我希望它显示为“乐高(乐高城市,乐高星球大战)”。

如果当前结果是最后一个,我怎么能得到?

4

4 回答 4

2

如果它是第一个结果,则不要添加逗号,并在所有下一个结果之前添加它。

于 2012-07-10T16:47:36.633 回答
2

你可以通过从另一个方向来解决这个问题。

除了最后一个结果之外,不要在每个结果之后附加逗号,而是尝试在除第一个结果之外的每个结果之前添加一个逗号。

在循环外部设置一个名为的变量$first,并将其设置为 1。在循环内部:

if ($first == 0) {
   echo ",";
} else {
    $first = 0;
}
于 2012-07-10T16:47:50.550 回答
2

只需构建您的结果数组并将其内。这会自动处理任何计数:

$comma_separated = implode(",", $array);
于 2012-07-10T16:49:28.903 回答
1

你不应该使用普通的 mysql 访问,看看PDO

回答你的问题,尝试这样的事情:

$items = array();
while ($row = mysql_fetch_assoc($result)) {
  $items[] = $row['foo'];
}
echo implode(', ', $items);
于 2012-07-10T16:51:03.403 回答