目录

PHP defined() 函数

❮ PHP 其他参考

示例

检查常量是否存在:

<?php
define("GREETING","Hello you! How are you today?");
echo defined("GREETING");
?>
亲自试一试 »

定义和用法

Defined() 函数检查常量是否存在。


语法

defined( name)

参数值

Parameter Description
name Required. Specifies the name of the constant to check

技术细节

返回值: 如果常量存在则返回 TRUE,否则返回 FALSE
PHP 版本: 4+

❮ PHP 其他参考