<?php /** * 隔行隔列换色 * string fun_table(int $rows=9,int $cols=9) * $rows 表示行数 必须为整数 并且必须在1-20之间 * $cols 表示列数 必须为整数 并且必须在1-20之间 */ function fun_table($rows=9,$cols=9){ if ($rows<1 || $rows>20){ return "必须为整数 并且必须在1-20之间"; } if ($cols<1 || $cols>20){ return "必须为整数 并且必须在1-20之间"; } if($rows!=(int)($rows)){ return '行数 必须为整数'; } if($cols!=(int)($cols)){ return '列数 必须为整数'; } $str=""; $str.= "<table cellspacing='0' width='500px' border = '1px' bordercolor='black'>"; for ($i=1;$i<=$rows;$i++){ $str.= "<tr>"; for ($j=1;$j<=$cols;$j++){ if(($i+$j)%2){ $str.= "<td height='50px' bgcolor='black'>"; }else{ $str.= "<td></td>"; } } $str.= "</tr>"; } $str.= "</table>"; return $str; } echo fun_table(); ?>
实现这个棋盘首先我们想想棋盘是怎么样的,是有很多个方格组成,然后由黑色和白色的相间的方格组成,首先我们先把方格画出来,代码如下:
<?php echo "<table cellspacing='0' width='500px' border = '1px' bordercolor='black'>"; for ($i=1;$i<=10;$i++){ echo "<tr>"; for ($j=1;$j<=10;$j++){ echo "<td>54im</td>"; } echo "</tr>"; } echo "</table>"; ?>
<?php /** 通过for循环和html实现棋盘 **/ echo "<table cellspacing='0' width='500px' border = '1px' bordercolor='black'>"; for ($i=1;$i<=10;$i++){ echo "<tr>"; for ($j=1;$j<=10;$j++){ if(($i+$j)%2){ echo "<td height='50px' bgcolor='black'>"; }else{ echo "<td></td>"; } } echo "</tr>"; } echo "</table>"; ?>
希望本文所述对大家的php程序设计有所帮助。