命名空間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

相關文章
相關標籤/搜索