Total number 21, divided into 5, each output 5 How to write I use php & nbsp; as a template call a total of 21 titles & nbsp; divided into 5 outputs, the style of each copy is different. how can I write it? -------- The general effect is as follows ----------- & nbsp; & total number 21, which is divided into 5 parts. how to write 5 entries for each output?
I use php as a template
A total of 21 titles are called and divided into 5 output parts. the style of each part is different. how can this problem be determined?
-------- The general effect is as follows -----------
One H2 title
Show 5 titles show 5 titles
Show 5 titles show 5 titles
-------- The general effect is as follows -----------
Please share the code with us:
------ Solution --------------------
Test Code
// Simulate data
$ Ar = range (1, 21 );
// Cut as required
$ T = array_merge (
Array (array_shift ($ ar) // The first data
, Array_chunk ($ ar, count ($ ar)/4) // The remaining score is 4 points.
);
// Output
Foreach ($ t as $ I => $ r ){
Echo "". join ('
', $ R). "\ n ";
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21