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

73.       * @param dbConfig  数据库配置
74.       */
75.      public function __construct($dbConfig)
76.      {
77.          $linkfunction = ( TRUE == $dbConfig['persistent'] ) ? 'mysql_pconnect' 'mysql_connect';
78.          $this->conn $linkfunction($dbConfig['host'].":".$dbConfig['port'], $dbConfig['login'], $dbConfig['password']) or spError("数据库链接错误 : " mysql_error()); 
79.          mysql_select_db($dbConfig['database'], $this->conn) or spError("无法找到数据库,请确认数据库名称正确!");
80.          $this->exec("SET NAMES UTF8");
81.      }
82. 
83.      /**
147.          if( TRUE == import($class_name.'.php')){
148.              $has_define TRUE;
149.          }
150.      }
151.      if(FALSE != $has_define){
152.          $GLOBALS['G_SP']["inst_class"][$class_name] = new $class_name($args);
153.          return $GLOBALS['G_SP']["inst_class"][$class_name];
154.      }
155.      spError($class_name."类定义不存在,请检查。");
156.  }
157. 
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'], $GLOBALS['G_SP']['db'], $GLOBALS['G_SP']['db_driver_path']);
53.      }
54.      
55.      
56.      /**
57.       获取数据库版本
147.          if( TRUE == import($class_name.'.php')){
148.              $has_define TRUE;
149.          }
150.      }
151.      if(FALSE != $has_define){
152.          $GLOBALS['G_SP']["inst_class"][$class_name] = new $class_name($args);
153.          return $GLOBALS['G_SP']["inst_class"][$class_name];
154.      }
155.      spError($class_name."类定义不存在,请检查。");
156.  }
157. 
59.          $w intval($this->spArgs("w"));
60.          if(!$id){
61.              echo "document.write('0')";
62.              exit();
63.          }
64.          $products spClass("product");
65.          if($rs $products->find(array("pid"=>$id), null"hits")){
66.              $info intval($rs['hits']) + 1;
67.              $products->update(array("pid"=>$id), array("hits"=>$info));
68.          }else{
69.              $info 0;
21. 
22.      //执行before_display注入函数
23.      spInject('before_display', array($handle_controller) );
24.      
25.      // 路由并执行用户代码
26.      $handle_controller->$__action();
27. 
28.      // 控制器程序运行完毕,进行模板的自动输出
29.      if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
30.          $__tplname $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
31.                  $__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼装模板路径
88.      unset($in);
89.  }
90. 
91.  //dump($_SESSION);
92.  require(APP_PATH  DS "libs" DS "zxinit.php");
93.  spRun();
94. 
95.  ?>