首页 > 代码库 > 返回值,表格

返回值,表格

<?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);

返回值,表格