eval('$obj=new '.$name.'m();return $obj;');
当return在eval中执行为什么不会返回,必须要在eval外面才能返回?
return 只能在 function 里面才会生效。不能作为语句单独来用。