(PHP 8 >= 8.2.0)
此属性用于标记允许动态属性的类。
从 PHP 8.2.0 开始,动态属性已弃用,因此在没有使用此属性标记类的情况下使用它们将发出弃用通知。
<?php
class DefaultBehaviour { }
#[\AllowDynamicProperties]
class ClassAllowsDynamicProperties { }
$o1 = new DefaultBehaviour();
$o2 = new ClassAllowsDynamicProperties();
$o1->nonExistingProp = true;
$o2->nonExistingProp = true;
?>
上述示例在 PHP 8.2 中的输出
Deprecated: Creation of dynamic property DefaultBehaviour::$nonExistingProp is deprecated in file on line 10