如果目标类中不存在 $name 常量,则该函数返回 bool(false),而不是空值或 null,而是 false(您需要使用 "===" 进行测试)
$constFounded = false ;
$this->currentlangClass = new ReflectionClass($langFile);
$this->currentlangClass->getConstant($constant);
if($myConst !== false){
$constFounded = true ;
}