分享一则PHP定义函数代码
程序员文章站
2022-10-19 20:50:49
先贴代码
复制代码 代码如下:
<?php
function table(){
echo "<table align='center' border='1' width='600' cellspacing='0';>";
echo "<caption><h1>这是表格的标题</h1></caption>";
for($out=0; $out < 10; $out++ ){
$bgcolor = $out%2 == 0 ? "#ffffff" : "green";
$fontcolor = $out%2 == 0 ? "#ffffff" : "#000000";
echo "<tr bgcolor=".$bgcolor.">";
for($in=0;$in<10;$in++){
echo "<td>".($out*10+$in)."</td>";
};
echo "</tr>";
};
echo "</table>";
}
table();
?>
先贴代码
复制代码 代码如下:
<?php
function table(){
echo "<table align='center' border='1' width='600' cellspacing='0';>";
echo "<caption><h1>这是表格的标题</h1></caption>";
for($out=0; $out < 10; $out++ ){
$bgcolor = $out%2 == 0 ? "#ffffff" : "green";
$fontcolor = $out%2 == 0 ? "#ffffff" : "#000000";
echo "<tr bgcolor=".$bgcolor.">";
for($in=0;$in<10;$in++){
echo "<td>".($out*10+$in)."</td>";
};
echo "</tr>";
};
echo "</table>";
}
table();
?>
这是一段 php 定义函数的代码
tips:
1、注意php 的语法格式
2、注意在php 中插入html 代码的方式
3、利用for 循环的时候,注意想清楚,外部循环和里部循环 的差异性
上一篇: C#登出系统并清除Cookie
下一篇: 十二岁能为相的甘罗,他的实力到底有多强?