我正在创建一个新的 ReflectionClass ,然后将 protected 属性 _products 设置为可访问。它总是返回 null 我在这里做错了什么吗?我在 5.4.11

$project  = new ReflectionClass( $instance_of_object );
$property = $project->getProperty( '_products' );
$property->setAccessible( true );
$products = $property->getValue( $project );

我试图确保在我的单元测试中正确设置了一个属性......

最佳答案

我准备了一个简单的例子。如果你能执行它,你的代码中其他地方肯定有错误:

class The_Class {

    private $_products;

    public function __construct() {
        $this->_products = 'foo';
    }
}

$instance_of_class = new The_Class();
$reflClass = new ReflectionClass($instance_of_class);
$member = $reflClass->getProperty('_products');
$member->setAccessible(true);
// Here is an error in your code:
// Note that I'm using $instance_of_class, rather then
// $reflClass as argument to getValue()
var_dump($member->getValue($instance_of_class)); // string(3) "foo"

关于php - 为什么 getProperty 通过 PHP ReflectionClass 返回 null,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16203666/

10-11 14:44