xp-lang/xp-static

XP 静态初始化块

v2.0.0 2024-03-24 13:50 UTC

This package is auto-updated.

Last update: 2024-09-01 08:03:02 UTC


README

Build status on GitHub XP Framework Module BSD Licence Requires PHP 7.4+ Supports PHP 8.0+ Latest Stable Version

XP 编译器的插件,它为 PHP 添加了静态初始化语法。这些将被编译成 XP 类加载机制所识别的 __static() 函数。

示例

namespace com\example\brotli;

class Streams {
  static {
    stream_wrapper_register('brotli', self::class);
  }

  // ...
}

安装

在您的项目中安装 XP 编译器后,也包含此插件。

$ composer require xp-framework/compiler
# ...

$ composer require xp-lang/xp-static
# ...

无需进一步操作。

另请参阅