84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
将表格的字符串return 回去是什么意思?
テーブル文字列? -PHP中国語WebサイトQ&A-テーブル文字列? -PHP中国語サイトQ&A
ぜひ見て学んでください。
就是函数会返回整个表格的html代码,像下面这样
<?php function biaoge($color,$width=10,$height=10,$color2='yellow'){ $resault = '<table width="800px" border="1">'; $i=0; $k=0; while ($i<$width) { $resault= $resault . '<tr>'; $j=0; while ($j < $height) { if ($i%2==0) { $resault= $resault .'<td bgcolor="'.$color.'">'.$k.'</td>'; } else{ $resault= $resault .'<td bgcolor="'.$color2.'">'.$k.'</td>'; } $j++; $k++; } $i++; $resault= $resault .'</tr>'; } $resault= $resault . '</table>'; return $resault; } echo biaoge('pink',4,7,'yellow'); ?>
テーブル文字列? -PHP中国語WebサイトQ&A-テーブル文字列? -PHP中国語サイトQ&A
ぜひ見て学んでください。
就是函数会返回整个表格的html代码,像下面这样