当前位置:首页 > PHP教程 > php函数 > 列表

分享一则PHP定义函数代码

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-14 23:35:23 浏览: 评论:0 

这篇文章主要介绍了分享一则PHP定义函数代码,主要是让大家熟悉下php的语法格式以及php中插入HTML代码的方式,希望能够给到大家一些帮助。

先贴代码:

  1. <?php 
  2.     function table(){ 
  3.         echo "<table align='center' border='1' width='600' cellspacing='0';>"
  4.         echo "<caption><h1>这是表格的标题</h1></caption>"
  5.         for($out=0; $out < 10; $out++ ){ 
  6.             $bgcolor = $out%2 == 0 ? "#ffffff" : "green"
  7.             $fontcolor = $out%2 == 0 ? "#ffffff" : "#000000"
  8.             echo "<tr bgcolor=".$bgcolor.">"
  9.             for($in=0;$in<10;$in++){ 
  10.                 echo "<td>".($out*10+$in)."</td>"
  11.             }; 
  12.             echo "</tr>"
  13.         }; 
  14.         echo "</table>"
  15.     } 
  16.     table(); 
  17. ?> 

这是一段 PHP  定义函数的代码

tips:

1、注意PHP 的语法格式

2、注意在PHP 中插入Html 代码的方式

3、利用for 循环的时候,注意想清楚,外部循环和里部循环 的差异性

Tags: PHP定义函数

分享到: