PHP8 AllowDynamicProperties 类

2023-08-22 11:49 更新

(PHP 8 >= 8.2.0)

简介

此注解用于标记 class,允许动态属性。

类摘要

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

参见

注解概览

目录

  • AllowDynamicProperties::__construct — 构造新的 AllowDynamicProperties 注解实例


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号