blob: e2c7d9245e000d4d6fd3411cff0dccbc3c10b705 (
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
|
--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
|