文字

ReflectionMethod::setAccessible

(PHP 5 >= 5.3.2)

ReflectionMethod::setAccessible设置方法是否访问

说明

public void ReflectionMethod::setAccessible ( bool $accessible )

设置方法是否可以访问,例如通过设置可以访问能够执行私有方法和保护方法

参数

accessible

可以访问设置 TRUE ,否则设置 FALSE

返回值

没有返回值。

参见

  • ReflectionMethod::isPrivate() - 判断方法是否是私有方法
  • ReflectionMethod::isProtected() - 判断方法是否是保护方法 (protected)

用户评论:

[#1] dave1010 at gmail dot com [2011-05-11 03:21:25]

This is handy for accessing private methods but remember that things are normally private for a reason! Unit Testing is one (debatable) use case for this.

Example:
<?php
class Foo {
  private function 
myPrivateMethod() {
    return 
7;
  }
}

$method = new ReflectionMethod('Foo''myPrivateMethod');
$method->setAccessible(true);
 
echo 
$method->invoke(new Foo);
// echos "7"
?>


This works nicely with PHPUnit: http://php.net/manual/en/reflectionmethod.setaccessible.php

上一篇: 下一篇: