abstract:<?php header("content-type:text/html;charset=utf-8");echo "兩個(gè)數(shù)相加 ";function add($a,$b){return $a+$b; }echo add(1,3);?>
<?php
header("content-type:text/html;charset=utf-8");
echo "兩個(gè)數(shù)相加 ";
function add($a,$b){
return $a+$b;
}
echo add(1,3);
?>
Correcting teacher:天蓬老師Correction time:2019-03-28 10:10:19
Teacher's summary:編程中最重要的就是函數(shù)了, 不僅可實(shí)現(xiàn)代碼復(fù)用, 也是代碼運(yùn)行的基本單元