TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
505 B
27 lines
505 B
<?php
|
|
|
|
class StaticPropertyFunctionLocalCache
|
|
{
|
|
public static mixed $value = 1;
|
|
|
|
public static function noStaticProperty(): int
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
public static function repeatedSelf(): array
|
|
{
|
|
self::$value = null;
|
|
return [self::$value, self::$value];
|
|
}
|
|
|
|
public static function repeatedStatic(): array
|
|
{
|
|
static::$value = null;
|
|
return [static::$value, static::$value, static::class, static::class];
|
|
}
|
|
}
|
|
|
|
function main(): void
|
|
{
|
|
}
|
|
|