PHP-显示文件的多行,永不重复

我需要每隔10行在div中回显它们.

例:

<div class='return-ed' id='1'>
line 1
line 2
...
line 9
line 10
</div>

<!-- next group of lines -->

<div class='return-ed' id='2'>
line 11
line 12
...
line 19
line 20
</div>

有人知道这样做的方法吗?

数组来自file(),因此其行来自文件.

解决方法:

这应该工作:

$blocks = array_chunk(file('path/to/file'), 10);
foreach($blocks as $number => $block) {
    printf('<div id="%d">%s</div>', 
            $number+1, 
            implode('<br/>', $block));
}

参考文献:

> array_chunk()
> printf()

上一篇:在每一行中查找单词C#


下一篇:python掷骰子猜大小游戏