<?php
header("content-type:text/html;charset=utf-8");
echo "两个数相加 ";
function add($a,$b){
return $a+$b;
}
echo add(1,3);
?>