php函数声明的简单实例

<?php
echo table(10,5,500);
echo table(2,2,400); //函数调用
function table($row,$col,$width){ //通过函数标记table表格
$str='<table border=1 width="'.$width.'"align="center">';
$str.='<caption><h1>表明</h1><caption>';

for ($i=0;$i<$row;$i++){
$str.='<tr>';
for ($j=0;$j<$col;$j++){
$str.='<td>'.($i*10+$j).'</td>';
}
$str.='</tr>';
}
return $str; //通过return语句返回数据
}
$str.='</table>';

?>

上一篇:A的ascll吗是多少?


下一篇:Java学习----反复做某件事情