标签:
<?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);
标签:
原文地址:http://www.cnblogs.com/lidepeng/p/5964455.html