文、意如
1.function-使用方法
<?php
function myfn()
{
echo "hello!";
}
myfn();//執行功能
2.參數傳遞
<?php
function info($name,$age){
echo '姓名:'.$name.',您好<br>';
echo 'age:'.$age.'歲<br>';
}
info('John',30);
$myname='Mary';
$myage=26;
info($myname,$myage);
3.參數可以預先給預設值,呼叫時如沒代入參數即會跑預設值
//參數可以預先給預設值,呼叫時如沒代入參數即會跑預設值
function buy($something='水',$number='1'){
echo '加入購物車'.$something.'<br>';
echo '數量'.$number.'<br>';
}
buy('漢堡','2');
buy();
buy('薯條');
4.使用return返回結果
<?php
//使用return返回結果
function buy($number,$price){
$total=$number*$price;
echo $total."元";
return $total;
}
$to=buy(3,100);
echo $to;//300
$to2=buy(5,160);
echo $to2;//800
Yiru@Studio - 關於我 - 意如