You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
423 B

--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: Class 'foo\bar' not found in %s on line %d