您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍php中defined()函数的使用方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
defined()是PHP中的内置函数,用于检查是否存在常量,即是否定义了常量;语法格式“defined(name)”,参数name是要检查的常量的名称。如果常量存在,则返回TRUE,否则返回FALSE。
php defined()函数
defined() 函数检查常量是否存在。
语法
defined(name)
name:规定要检查的常量的名称,不可省略。
返回值:如果常量存在,则返回 TRUE,否则返回 FALSE。
注意:此功能可用于PHP 4.0.0和更高版本。
示例1:
<?php define("constant_key", "value for the constant key"); echo defined("constant_key"); ?>
输出:
示例2:定义常数后检查条件是否成立。
<?php define("constant_key", "value for the constant key"); if(defined("constant_key")){ echo "constant_key is defined"; }else{ echo "constant_key is not defined"; } ?>
输出:
示例3:在没有定义常量的情况下检查是否满足条件。
<?php //define("constant_key", "value for the constant key"); if(defined("constant_key")){ echo "constant_key is defined"; }else{ echo "constant_key is not defined"; } ?>
输出:
以上是“php中defined()函数的使用方法”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。