duanpai6581 2014-08-03 11:22
浏览 50
已采纳

如何在数组上修剪foreach的输出

Ive got an array of Wordpress-Categories. What I want, is to output their names, seperated with a comma. - like this:

category1, category2, category3, category4, category5, ...

I tried this foreach loop:

foreach ($category as $cat){
  $catList = $cat->name.', ';
  echo $catList ;
}

But the output looks like this: category1, category2, category3,

As you can see, there is a comma at the end, which I dont want.

How would this work?

  • 写回答

4条回答 默认 最新

  • dou44481 2014-08-03 11:34
    关注

    Here is a simple way, just off the top of my head:

    $firstitem=1;
    foreach ($category as $cat) {
        if ($firstitem == 1) {
            $firstitem = 0;
        } else {
            $catList .= ', ';
        }
        $catList .= $cat->name;
    }
    echo $catList ;
    

    Of course, you could just echo the comma and name values without saving them. I did it this way in case you wanted to do something else with the catList string.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了