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.
23 lines
493 B
23 lines
493 B
<?php
|
|
|
|
class PropertyDefaultValid
|
|
{
|
|
public int $i = 123;
|
|
public float $f = 1.5;
|
|
public float $fromInt = 3;
|
|
public string $s = 'hello';
|
|
public bool $b = true;
|
|
public array $arr = [];
|
|
public ?int $ni = null;
|
|
public int|array $ia = [];
|
|
public mixed $m = [];
|
|
public $untyped = [];
|
|
public const NUM = 7;
|
|
public int $fromConst = self::NUM;
|
|
}
|
|
|
|
function property_default_valid(): void
|
|
{
|
|
$test = new PropertyDefaultValid();
|
|
var_dump($test->i);
|
|
}
|
|
|