lib_类定义不存在,请检查。

147.          $argString '';$comma ''
148.          if(null != $args)for ($i 0$i count($args); $i ++) { $argString .= $comma "\$args[$i]"$comma ', '; } 
149.          eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);"); 
150.          return $GLOBALS['G_SP']["inst_class"][$class_name];
151.      }
152.      spError($class_name."类定义不存在,请检查。");
153.  }
154. 
155.  /**
156.   spError 框架定义的系统级错误提示
157.   
178.         $this->type $type;
179. 
180.         // 数据库声明
181.         $appdataObj spClass("lib_appdata"); 
182.         $cateObj spClass("lib_cate");    // 分类
183.         $newsObj spClass("lib_".$type); 
184.         $sharevideoObj spClass("lib_sharevideo"); 
185.         $lib_replyinfo spClass("lib_replyinfo");    // 分类
186.         $db_user spClass('lib_user'); 
187.         $buycreditsObj spClass("lib_buycredits"); 
188. 
16.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
17.          eval($GLOBALS['G_SP']["dispatcher_error"]);
18.          exit;
19.      }
20.      // 路由并执行用户代码
21.      $handle_controller->$__action();
22.      // 控制器程序运行完毕,进行模板的自动输出
23.      if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.          $__tplname $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.                  $__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼装模板路径
26.          $handle_controller->auto_display($__tplname);
53.          ),
54.       )
55.  );
56.  require(SP_PATH."/SpeedPHP.php");
57.  import(APP_PATH.'/controller/tplbasis.php'); // 需要先载入top控制器父类
58.  spRun();