當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。