mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

* Include the source location in Closure names This change makes stack traces involving Closures, especially multiple different Closures, much more useful, because it's more easily visible *which* closure was called for a given stack frame. The implementation is similar to that of anonymous classes which already include the file name and line number within their generated classname. * Update scripts/dev/bless_tests.php for closure naming * Adjust existing tests for closure naming * Adjust tests for closure naming that were not caught locally * Drop the namespace from closure names This is redundant with the included filename. * Include filename and line number as separate keys in Closure debug info * Fix test * Fix test * Include the surrounding class and function name in closure names * Fix test * Relax test expecations * Fix tests after merge * NEWS / UPGRADING
97 lines
1.2 KiB
PHP
97 lines
1.2 KiB
PHP
--TEST--
|
|
Allow trailing commas in function and method calls
|
|
--FILE--
|
|
<?php
|
|
function foo(...$args) {
|
|
echo __FUNCTION__ . "\n";
|
|
var_dump($args);
|
|
}
|
|
foo(
|
|
'function',
|
|
'bar',
|
|
);
|
|
|
|
class Foo
|
|
{
|
|
public function __construct(...$args) {
|
|
echo __FUNCTION__ . "\n";
|
|
var_dump($args);
|
|
}
|
|
|
|
public function bar(...$args) {
|
|
echo __FUNCTION__ . "\n";
|
|
var_dump($args);
|
|
}
|
|
|
|
public function __invoke(...$args) {
|
|
echo __FUNCTION__ . "\n";
|
|
var_dump($args);
|
|
}
|
|
}
|
|
|
|
$foo = new Foo(
|
|
'constructor',
|
|
'bar',
|
|
);
|
|
|
|
$foo->bar(
|
|
'method',
|
|
'bar',
|
|
);
|
|
|
|
$foo(
|
|
'invoke',
|
|
'bar',
|
|
);
|
|
|
|
$bar = function(...$args) {
|
|
echo __FUNCTION__ . "\n";
|
|
var_dump($args);
|
|
};
|
|
|
|
$bar(
|
|
'closure',
|
|
'bar',
|
|
);
|
|
|
|
# Make sure to hit the "not really a function" language constructs
|
|
unset($foo, $bar,);
|
|
var_dump(isset($foo, $bar,));
|
|
?>
|
|
--EXPECTF--
|
|
foo
|
|
array(2) {
|
|
[0]=>
|
|
string(8) "function"
|
|
[1]=>
|
|
string(3) "bar"
|
|
}
|
|
__construct
|
|
array(2) {
|
|
[0]=>
|
|
string(11) "constructor"
|
|
[1]=>
|
|
string(3) "bar"
|
|
}
|
|
bar
|
|
array(2) {
|
|
[0]=>
|
|
string(6) "method"
|
|
[1]=>
|
|
string(3) "bar"
|
|
}
|
|
__invoke
|
|
array(2) {
|
|
[0]=>
|
|
string(6) "invoke"
|
|
[1]=>
|
|
string(3) "bar"
|
|
}
|
|
{closure:%s:%d}
|
|
array(2) {
|
|
[0]=>
|
|
string(7) "closure"
|
|
[1]=>
|
|
string(3) "bar"
|
|
}
|
|
bool(false)
|