PHP Loop table implements a two-row display method
This article mainly introduces the PHP loop table implementation of a row of two-column display method, this article directly give the implementation code, the focus is on the use of redundancy method, the need for friends can refer to the next
?
1 2 3 4 5 6 7 8 9 Ten + + / / |
!--? php $i =0; foreach ($setarr as $val) { $i + +; ? !--? = $val?--> !--? php }? $setarr = Array (0,1,2,3,4,5,6,7,8,9);//equivalent to the database get array If ($i%2==0&& $i
first column |
second column |
';
|
For example, a function conversion is required for the other character types:
?
1 2 3 4 |
$STR = "Hello World". It ' s a beautiful day. "; Print_r (Explode ("", $str)); ?> |
Results:
?
1 2 3 4 5 6 7 8 9 |
Array ( [0] = = Hello [1] = world. [2] + = It ' s [3] = a [4] = Beautiful [5] = = Day. ) |
http://www.bkjia.com/PHPjc/1011119.html www.bkjia.com true http://www.bkjia.com/PHPjc/1011119.html techarticle PHP Loop Table Implementation of a two-column display method This article mainly introduces the PHP loop table implementation of a row of two-column display method, this article directly gives the implementation code, the focus is on the method of taking the remainder ...