常数(Constants)


常数是在执行脚本中将没有变化的值(数字或是字符串)保存的识别者(名称)。 常数通过define关键词如下声明后使用。

<?php
  define("TEST_CONST", 16);                 // integer constant
  define("TEST_NAME", "constant");          // string constant
?>

※ PHPoC不支持使用const关键词的常数声明。

※ PHPoC不支持魔术常量(Magic constants)。