<?php
class Foo
{
public function __construct(...$args)
{
var_dump($args);
}
}
$foo = new Foo(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(2) {
["a"]=>
string(1) "a"
["b"]=>
string(1) "b"
}
- Output for 7.3.0 - 7.3.24, 7.4.0 - 7.4.12
- Parse error: syntax error, unexpected ':', expecting ')' in /in/d7SHg 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/d7SHg on line 11
Process exited with code 255.
preferences:
63.45 ms | 408 KiB | 5 Q