我正在制作一个新的ReflectionClass
,然后将受保护的属性设置_products
为可访问。它总是返回null
我在这里做错了吗?我在 5.4.11
$project = new ReflectionClass( $instance_of_object );
$property = $project->getProperty( '_products' );
$property->setAccessible( true );
$products = $property->getValue( $project );
我正在尝试确保在我的单元测试中正确设置属性...