function drawTable($width,$height){
echo "<table style=‘color:#fff‘>";
for($i=0;$i<$width;$i++){
if($i%2==0){
echo "<tr style=‘background:red;‘>";
}else{
echo "<tr style=‘background:green;‘>";
}
for($j=$i*$width;$j<($i+1)*$height;$j++){
echo "<td>";
echo $j;
echo "</td>";
}
echo "</tr>";
}
echo "</table>";
}
drawTable(4,4);
时间: 2024-11-14 05:54:19