PHP PHPの勉強メモ_2 chhao33 2020年11月1日 定数の定義方法: define() const <?php define(‘NAME’,’test’); const NAME2 = ‘test2’; echo NAME .PHP_EOL; echo NAME2 .PHP_EOL; ?>