ユーザー定義関数

return

returnは関数から戻り値を受け取ります。

書式

return(戻り値)

使用例

<?php

function test($num) {

return $num * 9;

}

echo test(9);

?>

出力結果

81