<?php
header("content-type:text/html;charset=utf8");
function sum($c,$a, $b) {
$c.= "<table>";
echo "<tr>
<td>
</td>
</tr>
";
$c.= "</table>";
return $c=$a+$b;
}
//在这里调用函数取得返回值
echo sum(‘table‘,1,2);
时间: 2024-12-31 10:11:11