1stPHP

定数

定数の形式

<?php
define
("SAMPLE", "テスト");
print
SAMPLE; // "テスト" を表示します
?>