「PHP」defineで定数を使用するサンプル
書式
define(定数名, xxx);
サンプルコード
<!DOCTYPE html> <html> <body> <?php // 大文字、小文字を区別する定数名 define("MSG", "test123"); define("msg", "test456"); echo MSG; echo "<br/>"; echo msg; ?> </body> </html>
Coding Changes the World
書式
define(定数名, xxx);
サンプルコード
<!DOCTYPE html> <html> <body> <?php // 大文字、小文字を区別する定数名 define("MSG", "test123"); define("msg", "test456"); echo MSG; echo "<br/>"; echo msg; ?> </body> </html>