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


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


ReflectionClass::__toString()函數是PHP中的內置函數,用於返回指定的ReflectionClass對象的字符串表示形式。

用法:

string ReflectionClass::__toString( void )

參數:該函數不接受任何參數。


返回值:此函數返回指定的ReflectionClass對象的字符串表示形式。

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

示例1:

<?php 
  
// Creating a user-defined function 
class Alphabets { 
    public function A() {} 
    public function B() {} 
} 
  
// Using ReflectionClass() over the  
// class Alphabets 
$class = new ReflectionClass('Alphabets'); 
  
// Calling the __toString() function 
$A = $class->__toString(); 
  
// Getting the sting representation 
var_dump($A); 
?>

輸出:

string(435) “Class [ <user> class Alphabets ] {
@@ /home/829bc146b7074eafd150c8e57aee5445.php 4-7

– Constants [0] {
}

– Static properties [0] {
}

– Static methods [0] {
}

– Properties [0] {
}

– Methods [2] {
Method [ <user> public method A ] {
@@ /home/829bc146b7074eafd150c8e57aee5445.php 5 – 5
}


Method [ <user> public method B ] {
@@ /home/829bc146b7074eafd150c8e57aee5445.php 6 – 6
}
}
}

示例2:

<?php 
  
// Using ReflectionClass() 
$class = new ReflectionClass('ReflectionClass'); 
  
// Calling the __toString() function 
$A = $class->__toString(); 
  
// Getting the sting representation 
var_dump($A); 
?>

輸出:

string(6824) “Class [ <internal:Reflection> class ReflectionClass implements Reflector ] {

– Constants [3] {
Constant [ integer IS_IMPLICIT_ABSTRACT ] { 16 }
Constant [ integer IS_EXPLICIT_ABSTRACT ] { 32 }
Constant [ integer IS_FINAL ] { 4 }
}

– Static properties [0] {
}

– Static methods [1] {
Method [ <internal:Reflection, prototype Reflector> static public method export ] {

– Parameters [2] {
Parameter #0 [ <required> $argument ]
Parameter #1 [ <optional> $return ]
}
}
}
. . .

Method [ <internal:Reflection> public method getShortName ] {

– Parameters [0] {
}
}
}
}

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



相關用法


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