数据库链接错误 : Ŀܾ޷ӡ

87.       * @param dbConfig  数据库配置
88.       */
89.      public function __construct($dbConfig)
90.      {
91.          $linkfunction = ( TRUE == $dbConfig['persistent'] ) ? 'mysql_pconnect' 'mysql_connect';
92.          $this->conn $linkfunction($dbConfig['host'].":".$dbConfig['port'], $dbConfig['login'], $dbConfig['password']) or spError("数据库链接错误 : " mysql_error()); 
93.          mysql_select_db($dbConfig['database'], $this->conn) or spError("无法找到数据库,请确认数据库名称正确!");
94.          $this->exec("SET NAMES UTF8");
95.      }
96.      /**
97.       对特殊字符进行过滤
144.          }
145.      }
146.      if(FALSE != $has_define){
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. 
47.      {
48.          if( null == $this->tbl_name )$this->tbl_name $GLOBALS['G_SP']['db']['prefix'] . $this->table;
49.          if( '' == $GLOBALS['G_SP']['db_driver_path'] ){
50.              $GLOBALS['G_SP']['db_driver_path'] = $GLOBALS['G_SP']['sp_drivers_path'].'/'.$GLOBALS['G_SP']['db']['driver'].'.php';
51.          }
52.          $this->_db spClass('db_'.$GLOBALS['G_SP']['db']['driver'], array(0=>$GLOBALS['G_SP']['db']), $GLOBALS['G_SP']['db_driver_path']);
53.      }
54. 
55.      /**
56.       从数据表中查找一条记录
57.       *
144.          }
145.      }
146.      if(FALSE != $has_define){
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. 
41.          $this->shopzc $this->defined;
42.          $this->sitename $this->sitename;
43.          //站点信息
44.          $this->skins 'template/'.$GLOBALS['G_SP']['shopzc_defined']['template'].'/';
45.          
46.          $this->site spClass("lib_site")->spLinker()->find(array("partner_id"=>$GLOBALS['G_SP']['shopzc_defined']['PID'],"partner_key"=>$GLOBALS['G_SP']['shopzc_defined']['KEY']));
47.          
48.          $this->menu spClass("lib_category")->spLinker()->findAll(array("ismenu"=>"1"),"listorder ASC,catid DESC");
49.          $this->banner spClass("lib_ads")->findAll(array("catid"=>"15"));
50.          
51.          $this->ads spClass("lib_ads")->findAll(array("catid"=>"11"));
15.      /**
16.       覆盖控制器构造函数,进行相关的赋值操作
17.       */
18.      public function __construct()
19.      {
20.          parent::__construct();                
21.          $this->DB spClass("lib_cms_article");                                //实例化文章表类
22.          $this->DB_CATE spClass("lib_category");                                //实例化栏目表类
23.          $site spClass("lib_site")->spLinker()->find(array("partner_id"=>$GLOBALS['G_SP']['shopzc_defined']['PID'],"partner_key"=>$GLOBALS['G_SP']['shopzc_defined']['KEY']));                 //站点配置
24.          $this->news_pagesize $site["setting"]["news_pagesize"];           //新闻分页参数
25.          $this->show_pagesize $site["setting"]["show_pagesize"];           //图文分页参数
144.          }
145.      }
146.      if(FALSE != $has_define){
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. 
9.  function spRun(){
10.      GLOBAL $__controller$__action;
11.      // 对路由进行自动执行相关操作
12.      spLaunch("router_prefilter");
13.      // 对将要访问的控制器类进行实例化
14.      $handle_controller spClass($__controllernull$GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
15.      // 调用控制器出错将调用路由错误处理函数
16.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
17.          eval($GLOBALS['G_SP']["dispatcher_error"]);
18.          exit;
19.      }
62.      
63.  // 载入用户自定义的函数文件
64.  require(SP_PATH."/SpeedPHP.php");
65.  require(APP_PATH.'/lib/functions.php');
66.  import('md5password.php');
67.  spRun();