「PHP」関数にデフォルト引数を利用するサンプル
書式
function 関数名($引数名1,$引数名2=値)
デフォルト引数は、右から順に指定します
使用例
<?php function funcA($x,$y=5,$z=6){ $res = $x + $y+ $z; return $res; } $num = funcA(3); echo $num; ?>
結果
16
Coding Changes the World
書式
function 関数名($引数名1,$引数名2=値)
デフォルト引数は、右から順に指定します
使用例
<?php function funcA($x,$y=5,$z=6){ $res = $x + $y+ $z; return $res; } $num = funcA(3); echo $num; ?>
結果
16