ReflectionProperty::setAccessible

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

ReflectionProperty::setAccessible设置属性可访问性

描述

public ReflectionProperty::setAccessible(bool $accessible): void

通过 ReflectionProperty::getValue()ReflectionProperty::setValue() 方法启用对受保护或私有属性的访问。

注意: 从 PHP 8.1.0 开始,调用此方法不再有任何效果;默认情况下所有属性都是可访问的。

参数

accessible

true 允许访问,或 false

返回值

不返回任何值。

示例

示例 #1 简单类定义

<?php
class MyClass
{
private
$foo = 'bar';
}

$property = new ReflectionProperty("MyClass", "foo");
$property->setAccessible(true);

$obj = new MyClass();
echo
$property->getValue($obj);
echo
$obj->foo;
?>

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

bar
Fatal error: Uncaught Error: Cannot access private property MyClass::$foo in /in/WJqTv:12

参见

添加备注

用户贡献备注 3 则备注

matthieu at mnapoli dot fr
11 年前
请注意,该属性将仅通过 ReflectionProperty 类变得可访问。该属性在类实例中仍然是私有的或受保护的。

<?php
class MyClass {
private
$myProperty = true;
}

$class = new ReflectionClass("MyClass");
$property = $class->getProperty("myProperty");
$property->setAccessible(true);

$obj = new MyClass();
echo
$property->getValue($obj); // 可行
echo $obj->myProperty; // 不行(错误)
?>
Rob McVey
14 年前
如果您使用的是 < PHP 5.3,并且需要获取私有属性和值,您可以使用此方法

这是您正在做的事情

<?php
$obj_with_privates
= new MyObject();
$class = get_class($obj_with_privates);
$vars = get_object_vars($obj_with_privates);
// 不会显示私有属性
print_r($vars);

$reflection = new ReflectionClass( $class );
$attributes = $reflection->getProperties();
// 仍然无法访问私有属性!
print_r($attributes);
?>

这是您应该做的事情

<?php
$obj_with_privates
= new MyObject();

$class = get_class( $obj_with_privates );
$reflection = new ReflectionClass( $class );
$abstract = $reflection->getMethods( ReflectionMethod::IS_ABSTRACT );
$priv_attr = $reflection->getProperties( ReflectionProperty::IS_PRIVATE );
$privates = array();
$parent = get_parent_class( $class );
$child = $class;
$constructor = $reflection->getConstructor();

// 如果类包含抽象方法,则需要实现它们
$abstr_methods = "";
if(
sizeof($abstr_methods))
{
foreach(
$abstract as $method)
{
$mname = $method->name;
$abstr_methods .= "public function $mname(){return false;}";
}
}

// 将私有属性转换为公有属性
if(sizeof($priv_attr))
{
$parseable = unserialize(str_replace("\0$class\0", "\0*\0", serialize($obj)));
foreach(
$priv_attr as $attribute)
{
$aname = $attribute->name;
$privates[$aname] = $parseable->$aname;
}
}


$temp_child_class = "temp" . str_replace("_", "", "$class");

// 通过扩展目标类可以访问受保护的属性
$class_def = "
class
$temp_child_class extends $class{
$constructor
public function reflect_getmyvars(){
return get_object_vars(\$this);
}
$abstr_methods
}
"
;

// 将类定义放置到内存中
eval($class_def);

// 从动态类生成对象
$tcobj =@ new $temp_child_class;
// 调用我们添加到对象中的方法(访问受保护的变量)
$vars = $tcobj->reflect_getmyvars();

$attribs = array_merge($vars, $privates);

// 现在将显示私有属性
print_r($attribs);
?>
Yzmir Ramirez
13 年前
你尝试过吗

<?php

echo "PHP 版本: ".phpversion()."\n";

class
Foo
{
private
$bar = "private";
protected
$bar2 = "protected";
public
$bar3 = "public";
}

$obj = new Foo;

$arr = (array)$obj;

print_r($arr);
?>

输出

PHP 版本: 5.2.12
数组
(
[Foobar] => private
[*bar2] => protected
[bar3] => public
)

PHP 版本: 5.1.6
数组
(
[Foobar] => private
[*bar2] => protected
[bar3] => public
)
To Top