php-src/Zend/tests/class_alias_020.phpt
Nikita Popov c9f27ee422 Display EngineExceptions like ordinary exceptions
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.
2015-05-15 23:40:32 +02:00

37 lines
516 B
PHP

--TEST--
Testing class alias in multiple namespaces
--FILE--
<?php
namespace foo;
class foo {
}
class_alias(__NAMESPACE__ .'\foo', 'foo');
namespace foo\bar;
class foo {
}
class_alias(__NAMESPACE__ .'\foo', 'bar');
var_dump(new \foo, new \bar);
var_dump(new \foo\foo, new \foo\bar);
?>
--EXPECTF--
object(foo\foo)#1 (0) {
}
object(foo\bar\foo)#2 (0) {
}
Fatal error: Uncaught exception 'EngineException' with message 'Class 'foo\bar' not found' in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d