当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ReflectionClass hasConstant()用法及代码示例


ReflectionClass::hasConstant()函数是PHP中的内置函数,用于检查指定的常量是否存在。

用法:

bool ReflectionClass::hasConstant( string $name )

参数:该函数接受单个参数$name,该参数保存定义的常量的名称。


返回值:如果定义了常量,则此函数返回TRUE,否则返回FALSE。

以下示例程序旨在说明PHP中的ReflectionClass::hasConstant()函数:

程序1:

<?php 
  
// Defining a user-defined class Company 
class Company { 
    const c1 = 'GeeksforGeeks'; 
} 
  
// Using the ReflectionClass over the 
// defined user-defined class Company 
$constant = new ReflectionClass("Company"); 
  
// Calling the hasConstant() function 
$const = $constant->hasConstant("c1"); 
  
// Getting the value TRUE or FALSE 
var_dump($const); 
?>
输出:
bool(true)

程序2:

<?php 
   
// Defining an empty class 
class Company { 
} 
   
// Using the ReflectionClass over the 
// defined user-defined class Company 
$constant = new ReflectionClass("Company"); 
   
// Calling the hasConstant() function and 
// getting the value TRUE or FALSE 
var_dump($constant->hasConstant("c1")); 
?>
输出:
bool(false)

参考: https://secure.php.net/manual/en/reflectionclass.hasconstant.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionClass hasConstant() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。