<?php
class Bar
{
public function __construct(...$args)
{
var_dump(func_get_args());
}
}
$bar = new Bar(a: 'a', b: 'b');
- Output for 8.1.23 - 8.1.33, 8.2.10 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- array(0) {
}
- Output for 7.3.0 - 7.3.24, 7.4.0 - 7.4.12
- Parse error: syntax error, unexpected ':', expecting ')' in /in/UUhOK on line 11
Process exited with code 255. - Output for 7.2.0 - 7.2.34
- Parse error: syntax error, unexpected ':', expecting ',' or ')' in /in/UUhOK on line 11
Process exited with code 255.
preferences:
80.82 ms | 408 KiB | 5 Q