gpt4 book ai didi

php - 检查类常量是否存在

转载 作者:IT王子 更新时间:2023-10-29 00:53:23 25 4
gpt4 key购买 nike

如何检查 PHP 类中是否定义了常量?

class Foo {
const BAR = 1;
}

类常量是否有类似 property_exists()method_exists() 的东西?或者我可以只使用 defined("Foo::BAR") 吗?

最佳答案

您可以使用以下代码检查是否定义了常量:

<?php
if(defined('className::CONSTANT_NAME')){
//defined
}else{
//not defined
}

关于php - 检查类常量是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24159178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com