「PHP」ユーザー定義関数にデフォルト値がある箇所に引数を設定する
関数
function 関数名($引数1=値1,$引数2=値2)
結果 = 関数名(値1,値2);
使用例
<?php function funcA($x=3,$y=4,$z=6){ $re = $x + $y + $z; return $re; } $res = funcA(6,5); echo $res; ?>
実行結果
17
Coding Changes the World
関数
function 関数名($引数1=値1,$引数2=値2)
結果 = 関数名(値1,値2);
使用例
<?php function funcA($x=3,$y=4,$z=6){ $re = $x + $y + $z; return $re; } $res = funcA(6,5); echo $res; ?>
実行結果
17