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