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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。