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


PHP ReflectionClass hasProperty()用法及代碼示例


ReflectionClass::getProperty()函數是PHP中的內置函數,用於檢查指定的屬性是否存在。

用法:

bool ReflectionClass::hasProperty( string $name )

參數:該函數接受單個參數$name,該參數保存正在檢查的屬性的名稱。


返回值:如果存在指定的屬性,則此函數返回true,否則返回false。

以下示例程序旨在說明PHP中的ReflectionClass::hasProperty()函數:

程序1:

<?php 
  
// Using ReflectionClass  
$ReflectionClass = new ReflectionClass('ReflectionClass'); 
  
// Initializing a property name 
$a = 'name'; 
  
// Calling hasProperty() function over 
// the property name 
$Property = $ReflectionClass->hasProperty($a); 
  
// Getting the value true or false 
var_dump($Property); 
?>
輸出:
bool(true)

程序2:

<?php 
   
// Defining a user-defined class Company 
class Company { 
    Public Function GeeksforGeeks() {} 
    Private Function GFG() {} 
} 
   
// Using ReflectionClass over the above  
// Company class 
$Class = new ReflectionClass('Company'); 
   
// Calling hasProperty() function 
$A = $Class->hasProperty($Class); 
   
// Getting the value either true or false 
var_dump($A); 
?>
輸出:
bool(false)

參考: https://www.php.net/manual/en/reflectionclass.hasproperty.php



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionClass hasProperty() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。