ユーザー定義関数

function

functionは関数を定義します。

書式

function 関数名() {

    処理

}

使用例

<?php

function test() {

  echo "滋賀県";

}

test();

?>

出力結果

滋賀県。