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.
32 lines
422 B
32 lines
422 B
--TEST--
|
|
named args
|
|
--FILE--
|
|
<?php
|
|
class FooObject
|
|
{
|
|
public function bar($args)
|
|
{
|
|
var_dump($args);
|
|
}
|
|
|
|
public function run() {
|
|
$array['handler'] = 'bar';
|
|
$this->{$array['handler']}([2026, 'ae86', 'bmw']);
|
|
}
|
|
}
|
|
|
|
function main()
|
|
{
|
|
$object = new FooObject;
|
|
$object->run();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
[0]=>
|
|
int(2026)
|
|
[1]=>
|
|
string(4) "ae86"
|
|
[2]=>
|
|
string(3) "bmw"
|
|
}
|
|
|