mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
16 lines
323 B
PHP
16 lines
323 B
PHP
--TEST--
|
|
Validation of class names in the autoload process
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
echo "$name\n";
|
|
});
|
|
$a = "../BUG";
|
|
$x = new $a;
|
|
echo "BUG\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Class "../BUG" not found in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sautoload_021.php on line 6
|