PHP 中的 defined() 函数
phpprogrammingserver side programming
PHP 中的 defined() 函数检查常量是否存在。
语法
defined(name)
参数
name− 常量的名称。
返回
如果常量存在,则 defined() 函数返回 true,否则返回 false。
示例
以下是检查常量是否存在的示例。
<?php define("myConstant","This is it!"); echo defined("myConstant"); ?>
输出
以下是输出。
1