mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
17 lines
310 B
PHP
17 lines
310 B
PHP
--TEST--
|
|
Bug #46665 (Triggering autoload with a variable classname causes truncated autoload param)
|
|
--FILE--
|
|
<?php
|
|
|
|
spl_autoload_register(function ($class) {
|
|
var_dump($class);
|
|
require __DIR__ .'/bug46665_autoload.inc';
|
|
});
|
|
|
|
$baz = '\\Foo\\Bar\\Baz';
|
|
new $baz();
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(11) "Foo\Bar\Baz"
|