2014.01.09php函数学习

php利用函数打印表格:

 1 <?php

 2 /*

 3   2014-01-09学习php函数

 4   函数的传参

 5 */

 6  header('content-type:text/html;charset=utf-8');

 7 //函数中传入$row和$low函数

 8  function biaoge($row,$low,$color){

 9    echo'<table width="800" border="1">';

10    

11    for($a=0;$a<$row;$a++){

12       if($a%2==0){

13         $bg=$color;

14       }

15       else{

16         $bg="#fff";

17       }

18       echo"<tr bgColor=".$bg.">";

19        for($b=0;$b<$low;$b++){

20         echo"<td>".($a*$low+$b)."</td>";

21        } 

22       echo'</tr>';  

23  }

24  echo"</table>";

25  

26  }

27  biaoge(10,5,"blue");

28 

29 ?>

 

你可能感兴趣的:(PHP)