(PHP 5, PHP 7, PHP 8)
ReflectionProperty::isDefault — 检查属性是否为默认属性
此函数没有参数。
示例 #1 ReflectionProperty::isDefault() 示例
<?php
class Foo {
public $bar;
}
$o = new Foo();
$o->bar = 42;
$o->baz = 42;
$ro = new ReflectionObject($o);
var_dump($ro->getProperty('bar')->isDefault());
var_dump($ro->getProperty('baz')->isDefault());
?>
以上示例将输出
bool(true) bool(false)