2024年PHP开发者大会日本站

AllowDynamicProperties 属性

(PHP 8 >= 8.2.0)

介绍

此属性用于标记允许动态属性的类。

类概要

final class AllowDynamicProperties {
/* 方法 */
public __construct()
}

示例

从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

参见

属性概述

目录

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top