http://www.php.cn/code/1084.html
이 과제를 완료할 수 없습니다.
卖女孩的小火柴哟2018-03-05 18:18:35
<?php function renderTable($c0,$c1='red') { $table = '<table border="1">'; for($i=1;$i<10;$i++) { // if ($i%2==0) { // $table .= "<tr bgcolor={$c0}>"; // } else { // $table .= "<tr bgcolor={$c1}>"; // } $table .= "<tr bgcolor='#$i(16-$i)$i'>"; for($j=1;$j<10;$j++) { $table .= '<td>'.$i.'x'.$j.'='.$i*$j.'</td>'; } $table .= '</tr>'; } $table .= '</table>'; return $table; } echo renderTable('blue'); ?>
바로 그거예요
不是铭跃2017-06-06 15:27:50
<?php
echo '<table>';
function 데모($color1,$color="pink",$cor=10,$row=10){
for($x=0; $x<$row;$x++){
if($x%2==0){
echo "<tr bgcolor='$color'>";
}else{
echo"< ;tr bgcolor='$color1'>";
}
for($y=0;$y<$cor;$y++){
echo "<td>".($x.$y )."</td>";
}
echo "<tr>" ;
}
return "<table>";
}
$demo=demo('red');
echo $demo;
?>