如何在PHP中获取对象的受保护属性
我有一个对象,其中包含一些我想要获取和设置的受保护属性。对象如下所示
Fields_Form_Element_Location Object
(
[helper] => formText
[_allowEmpty:protected] => 1
[_autoInsertNotEmptyValidator:protected] => 1
[_belongsTo:protected] =>
[_description:protected] =>
[_disableLoadDefaultDecorators:protected] =>
[_errorMessages:protected] => Array
(
)
[_errors:protected] => Array
(
)
[_isErrorForced:protected] =>
[_label:protected] => Current City
[_value:protected] => 93399
[class] => field_container field_19 option_1 parent_1
)
我想获取对象的属性。当我尝试或它产生错误。我搜索并找到了要使用的解决方案。它在我的本地工作,但在服务器上PHP版本是所以我不能在那里使用这个功能。那么任何解决方案如何获得这样的财产呢?value
$obj->_value
$obj->value
PHP Reflection Class
5.2.17