1--TEST-- 2003: Name conflict (ns name) 3--FILE-- 4<?php 5namespace test\ns1; 6 7class Exception { 8} 9 10echo get_class(new Exception()),"\n"; 11--EXPECT-- 12test\ns1\Exception 13