mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
c9f27ee422
TypeException stays as-is for now because it uses messages that are incompatible with the way exception messages are displayed. closure_038.phpt and a few others now show that we're generating too many exceptions for compound operations on undefined properties -- this needs to be fixed in a followup.
17 lines
357 B
PHP
17 lines
357 B
PHP
--TEST--
|
|
Validation of class names in the autoload process
|
|
--FILE--
|
|
<?php
|
|
function __autoload($name) {
|
|
echo "$name\n";
|
|
}
|
|
$a = "../BUG";
|
|
$x = new $a;
|
|
echo "BUG\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught exception 'EngineException' with message 'Class '../BUG' not found' in %sautoload_021.php:6
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sautoload_021.php on line 6
|