扩展

如果你想创建内置类的特殊版本(例如,用于创建导出时的彩色 HTML,拥有易于访问的成员变量而不是方法,或拥有实用程序方法),你可以继续扩展它们。

示例 #1 扩展内置类

<?php
/**
* 我的 Reflection_Method 类
*/
class My_Reflection_Method extends ReflectionMethod
{
public
$visibility = array();

public function
__construct($o, $m)
{
parent::__construct($o, $m);
$this->visibility = Reflection::getModifierNames($this->getModifiers());
}
}

/**
* 演示类 #1
*
*/
class T {
protected function
x() {}
}

/**
* 演示类 #2
*
*/
class U extends T {
function
x() {}
}

// 打印信息
var_dump(new My_Reflection_Method('U', 'x'));
?>

上面的示例将输出类似于以下内容

object(My_Reflection_Method)#1 (3) {
  ["visibility"]=>
  array(1) {
    [0]=>
    string(6) "public"
  }
  ["name"]=>
  string(1) "x"
  ["class"]=>
  string(1) "U"
}
注意

如果你正在覆盖构造函数,请记住在插入任何代码之前调用父类的构造函数。如果不这样做会导致以下错误:致命错误:内部错误:无法检索反射对象

添加备注

用户贡献的备注 1 则备注

khelaz at gmail dot com
13 年前
扩展类 ReflectionFunction 以获取函数的源代码

<?php
class Custom_Reflection_Function extends ReflectionFunction {

public function
getSource() {
if( !
file_exists( $this->getFileName() ) ) return false;

$start_offset = ( $this->getStartLine() - 1 );
$end_offset = ( $this->getEndLine() - $this->getStartLine() ) + 1;

return
join( '', array_slice( file( $this->getFileName() ), $start_offset, $end_offset ) );
}
}
?>
To Top