dourenzhou8740 2012-11-12 20:54
浏览 16
已采纳

php循环 - 检查总数之前的最后一个数字

Let's say that you have an array of 30 characters and you are looping through them to build a visual grid in HTML. I want to know when it's on the last row of items and apply a CSS rule. For every 8th item, I can use the code below to apply an additional CSS rule:

$cnt=1;
foreach ($characters as $index => $character){
   if ($cnt % 8==0) echo "newline";
   $cnt++;
}

Since I only have 30 characters, there will be 3 lines with a shorter 4th line (it will only have 6 items). How can I flag every character from 24-30 as belonging to the last row. The total number of characters will always vary.

  • 写回答

4条回答 默认 最新

  • duancuan7057 2012-11-12 20:58
    关注
    $rowCount = 8; // the number of items per row
    $lastRowStarts = intval(floor(count($characters) / $rowCount)) * $rowCount;
    // e.g: floor(30 / 8) * 8 = 3 * 8 = 24 = <index of first item in last row>
    
    $index = 1;
    foreach ($characters as $character) {
       if ($index >= $lastRowStarts) echo "last line";
    
       $index++;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号