作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我该如何在每个 echo 出的变量之后而不是在最后一个变量之后添加一个逗号?
目前我是这样显示列表的:
while ($row = mysqli_fetch_array($query3)) {
$tag = $row['tag'];
$tagformat = eregi_replace("_", " ", $tag);
$blogDisplay .= $tagformat.' ';
}
这显示:testtag1 testtag2 testtag3
我希望它显示:testtag1、testtag2、testtag3
任何帮助都会很棒!
为 SQL 查询编辑:
$sqlCommand3 = "SELECT tag FROM blogtags WHERE blogid='$blogid'";
$query3 = mysqli_query($myConnection, $sqlCommand3) or die (mysqli_error());
$blogDisplay 还有其他值:
$blogDisplay .= '<h1><a href="/blog/'. $blogseourl .'"> ' . $blogtitle . ' </a></h1> ' . $contentshort . '... <a href="/blog/'. $blogseourl .'">Read More...</a><br /><br /> ' . $author . ' posted on ' . $blogtime . ' | Category: ' . $category . ' | Tags: ';
while ($row = mysqli_fetch_array($query3)) {
$tag = $row['tag'];
$tag = str_replace("_", " ", $tag);
$blogDisplay .= $tag.' ';
}
$blogDisplay .= ' | <a href="/blog/'. $blogseourl .'#disqus_thread"></a>';
最佳答案
您可以将它们添加到数组中,然后 implode之后的数组:
$tags = array();
while ($row = mysqli_fetch_array($query3)) {
$tag = $row['tag'];
$tagformat = eregi_replace("_", " ", $tag);
$tags[] = $tagformat;
}
echo implode(', ', $tags);
这将逻辑与输出分开,您应该尽可能争取。 6 个月后,当您重新使用此代码时,它会让您的生活更轻松!
关于PHP MySQL 用逗号回显变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16145148/
我是一名优秀的程序员,十分优秀!