blob: 1c0ec3ab0823412e43ea265a59a70e7cf463d656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
006: Run-time name conflict (ns name)
--FILE--
<?php
namespace test\ns1;
class Exception {
}
$x = "test\\ns1\\Exception";
echo get_class(new $x),"\n";
--EXPECT--
test\ns1\Exception
|