mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +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
39 lines
771 B
PHP
39 lines
771 B
PHP
--TEST--
|
|
active_class_entry must be always correct (__METHOD__ should not depend on declaring function ce)
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace Baz;
|
|
|
|
class Foo {
|
|
public static function bar() {
|
|
function foo() {
|
|
var_dump(__FUNCTION__);
|
|
var_dump(__METHOD__);
|
|
var_dump(__CLASS__);
|
|
}
|
|
|
|
foo();
|
|
|
|
var_dump(__FUNCTION__);
|
|
var_dump(__METHOD__);
|
|
var_dump(__CLASS__);
|
|
|
|
return function() {var_dump(__FUNCTION__); var_dump(__METHOD__); var_dump(__CLASS__); };
|
|
}
|
|
}
|
|
|
|
$c = Foo::bar();
|
|
|
|
$c();
|
|
?>
|
|
--EXPECTF--
|
|
string(7) "Baz\foo"
|
|
string(7) "Baz\foo"
|
|
string(0) ""
|
|
string(3) "bar"
|
|
string(12) "Baz\Foo::bar"
|
|
string(7) "Baz\Foo"
|
|
string(%d) "{closure:%s:%d}"
|
|
string(%d) "{closure:%s:%d}"
|
|
string(7) "Baz\Foo"
|