blob: ba330e4ae576fbf589ccbdf7bf910b824eae7e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
--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 Error: Class 'foo\bar' not found in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
|