PHP在列中显示数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP在列中显示数组相关的知识,希望对你有一定的参考价值。

  1. function column_display($items,$numcols) {
  2.  
  3. $numitems = count($items);
  4.  
  5. // Number of Rows
  6. $numrows = ceil($numitems/$numcols);
  7.  
  8. $output = '<table>';
  9. for ($row=1; $row <= $numrows; $row++)
  10. {
  11. $cell = 0;
  12. $output .= ' <tr>'." ";
  13. for ($col=1; $col <= $numcols; $col++)
  14. {
  15. $output .= ' <td>'." ";
  16.  
  17. if ($col===1)
  18. {
  19. $cell += $row;
  20.  
  21. $output .= $items[$cell - 1]->name;
  22.  
  23. }
  24. else {
  25. $cell += $numrows;
  26. $output .= $items[$cell - 1]->name;
  27. }
  28. $output .= ' </td>'." ";
  29. }
  30. $output .= ' </tr>'." ";
  31. }
  32. $output .= '</table>';
  33. return $output;
  34. }

以上是关于PHP在列中显示数组的主要内容,如果未能解决你的问题,请参考以下文章

在列中显示两个不同日期的数据

在 Users.php 列中显示用户元数据

使用 json 数据并将其显示在列中

SQL:您如何在列中显示占总数的百分比?

在列中显示终端输出以有效地查看更多输出

如何在列中显示饼图的图例?