PHPの勉強メモ_2

定数の定義方法:

  • define()
  • const

<?php
define(‘NAME’,’test’);
const NAME2 = ‘test2’;
echo NAME .PHP_EOL;
echo NAME2 .PHP_EOL;
?>