mirror of
https://github.com/php/php-src.git
synced 2024-12-22 08:20:23 +08:00
22 lines
312 B
Plaintext
22 lines
312 B
Plaintext
|
--TEST--
|
||
|
Closure 049: static::class in static closure in non-static method.
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class A {
|
||
|
function foo() {
|
||
|
$f = static function() {
|
||
|
return static::class;
|
||
|
};
|
||
|
return $f();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class B extends A {}
|
||
|
|
||
|
$b = new B;
|
||
|
|
||
|
var_dump($b->foo());
|
||
|
--EXPECT--
|
||
|
string(1) "B"
|