84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
将表格的字符串return 回去是什么意思?
表格的字串? -PHP中文網路問答-表格的字串? -PHP中文網問答
圍觀一下哦,學習一下。
就是函数会返回整个表格的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中文網路問答-表格的字串? -PHP中文網問答
圍觀一下哦,學習一下。
就是函数会返回整个表格的html代码,像下面这样