PHP在列中显示数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP在列中显示数组相关的知识,希望对你有一定的参考价值。
function column_display($items,$numcols) { // Number of Rows $output = '<table>'; for ($row=1; $row <= $numrows; $row++) { $cell = 0; $output .= ' <tr>'." "; for ($col=1; $col <= $numcols; $col++) { $output .= ' <td>'." "; if ($col===1) { $cell += $row; $output .= $items[$cell - 1]->name; } else { $cell += $numrows; $output .= $items[$cell - 1]->name; } $output .= ' </td>'." "; } $output .= ' </tr>'." "; } $output .= '</table>'; return $output; }
以上是关于PHP在列中显示数组的主要内容,如果未能解决你的问题,请参考以下文章