命名空间0001

 

namespace test;
class core
{
	static public function start()
	{
		spl_autoload_register('test\\core::autoload');
		$a       =   'thisclass';
		new thisclass();
//		new $a();

	}

	static public function autoload($class)
	{
		echo $class.'</br>';
	}
}

new thisclass();结果 test\thisclassphp

new $a 结果 thisclassthis

相关文章
相关标签/搜索