mirror of
https://github.com/php/php-src.git
synced 2024-12-20 23:39:46 +08:00
22 lines
372 B
PHP
22 lines
372 B
PHP
--TEST--
|
|
Bug #47699 (autoload and late static binding)
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
static function test($v='') {
|
|
print_r(get_called_class());
|
|
}
|
|
}
|
|
class B extends A {
|
|
}
|
|
B::test();
|
|
spl_autoload_register('B::test');
|
|
new X();
|
|
?>
|
|
--EXPECTF--
|
|
BB
|
|
Fatal error: Uncaught Error: Class 'X' not found in %sbug47699.php:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug47699.php on line %d
|