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.
 
 

19 lines
311 B

<?php
declare(strict_types=1);
class Data {
public int $value = 0;
public bool $bv = true;
}
function main()
{
$o = new Data;
$value = any('222');
$o->value = $value;
$o->value += '333';
var_dump($o->value);
$o->value = 'str';
$o->value += 'str';
var_dump($o->value);
}