php循环table实现一行两列显示的方法_php实例

WBOY
Release: 2016-06-07 17:12:44
Original
1408 people have browsed it
<table width="100%" border="0" cellspacing="1" cellpadding="0" style="background:#CCC">
 <tr>
  <td align="center" bgcolor="#FFFFFF">第一列</td>
  <td align="center" bgcolor="#FFFFFF">第二列</td>
 </tr>
 <tr>
  <&#63;php
   $setarr = array(0,1,2,3,4,5,6,7,8,9); //相当于数据库获取的数组
 $i=0;
 foreach($setarr as $val){
  $i++;
 &#63;>
   <&#63;=$val&#63;>
  <&#63;php 
 if($i%2==0&&$i<count($setarr)) echo '</tr><tr>';
 
 } &#63;>
 </tr>
</table>
Copy after login

如:是其他字符类型,需要用到函数转化:

<&#63;php
$str = "Hello world. It's a beautiful day.";
print_r (explode(" ",$str));
&#63;>
Copy after login

结果:

Array
(
[0] => Hello
[1] => world.
[2] => It's
[3] => a
[4] => beautiful
[5] => day.
)

Copy after login

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!