SELECT * FROM cate WHERE pid = '28' AND isshow = '1' ORDER BY seq ASC
执行错误: MySQL server has gone away
- /home/codes/webcode/xmgbuy.com/SpeedPHP/Drivers/mysql.php on line 62
57.
{
58.
$this->arrSql[] = $sql;
59.
if( $result = mysql_query($sql, $this->conn) ){
60.
return $result;
61.
}else{
62.
63.
spError("{$sql}<br />执行错误: " . mysql_error());
}
64.
}
65.
66.
/**
67.
* 返回影响行数
- /home/codes/webcode/xmgbuy.com/SpeedPHP/Drivers/mysql.php on line 26
21.
*
22.
* @param sql 执行的SQL语句
23.
*/
24.
public function getArray($sql)
25.
{
26.
27.
if( ! $result = $this->exec($sql) )return array();
if( ! mysql_num_rows($result) )return array();
28.
$rows = array();
29.
while($rows[] = mysql_fetch_array($result,MYSQL_ASSOC)){}
30.
mysql_free_result($result);
31.
array_pop($rows);
- /home/codes/webcode/xmgbuy.com/SpeedPHP/Core/spModel.php on line 103
98.
}else{
99.
$sort = "ORDER BY {$this->pk}";
100.
}
101.
$sql = "SELECT {$fields} FROM {$this->tbl_name} {$where} {$sort}";
102.
if(null != $limit)$sql = $this->_db->setlimit($sql, $limit);
103.
104.
return $this->_db->getArray($sql);
}
105.
/**
106.
* 过滤转义字符
107.
*
108.
* @param value 需要进行过滤的值
- /home/codes/webcode/xmgbuy.com/model/lib_cate.php on line 193
188.
}
189.
190.
public function getTyCataList($id=0,$level=0)
191.
{
192.
$conditions = array('pid'=>$id,'isshow'=>'1');
193.
194.
$results = $this->findAll($conditions,'seq ASC');
$catlist = array();
195.
for($i=0;$i < $level *2 - 1;$i++){
196.
$str .="";
197.
}
198.
if($level++){$str .= "";};
- /home/codes/webcode/xmgbuy.com/model/lib_cate.php on line 230
225.
$kftypes = $cat['kftypes'];
226.
$isfront = $cat['isfront'];
227.
228.
$value = array('cid'=>$id,'pid'=>$pid,'cname'=>$name,'seq'=>$seq,'tplmod'=>$tplmod,'anothername'=>$anothername,'ishide'=>$ishide,'zdysubcate'=>$zdysubcate,'labels'=>$labels,'isshow'=>$isshow,'zdytitle'=>$zdytitle,'zdykeywords'=>$zdykeywords,'zdydescription'=>$zdydescription,'expandcate'=>$expandcate,'fieldstops'=>$fieldstops,'rtpl'=>$rtpl,'zdytpltitle'=>$zdytpltitle,'zdytplkeywords'=>$zdytplkeywords,'zdytpldescription'=>$zdytpldescription,'mclasstpl'=>$mclasstpl,'mdetailtpl'=>$mdetailtpl,'startuniversal'=>$startuniversal,'endgeneral'=>$endgeneral,'classnumber'=>$classnumber,'channeltype'=>$channeltype,'kftypes'=>$kftypes,'isfront'=>$isfront);
229.
$catlist[] = $value;
230.
231.
$catlist = array_merge($catlist,$this->getTyCataList($id,$level));
}
232.
return $catlist;
233.
}
234.
235.
// verifier 规则
- /home/codes/webcode/xmgbuy.com/model/lib_cate.php on line 230
225.
$kftypes = $cat['kftypes'];
226.
$isfront = $cat['isfront'];
227.
228.
$value = array('cid'=>$id,'pid'=>$pid,'cname'=>$name,'seq'=>$seq,'tplmod'=>$tplmod,'anothername'=>$anothername,'ishide'=>$ishide,'zdysubcate'=>$zdysubcate,'labels'=>$labels,'isshow'=>$isshow,'zdytitle'=>$zdytitle,'zdykeywords'=>$zdykeywords,'zdydescription'=>$zdydescription,'expandcate'=>$expandcate,'fieldstops'=>$fieldstops,'rtpl'=>$rtpl,'zdytpltitle'=>$zdytpltitle,'zdytplkeywords'=>$zdytplkeywords,'zdytpldescription'=>$zdytpldescription,'mclasstpl'=>$mclasstpl,'mdetailtpl'=>$mdetailtpl,'startuniversal'=>$startuniversal,'endgeneral'=>$endgeneral,'classnumber'=>$classnumber,'channeltype'=>$channeltype,'kftypes'=>$kftypes,'isfront'=>$isfront);
229.
$catlist[] = $value;
230.
231.
$catlist = array_merge($catlist,$this->getTyCataList($id,$level));
}
232.
return $catlist;
233.
}
234.
235.
// verifier 规则
- /home/codes/webcode/xmgbuy.com/controller/tplbasis.php on line 464
459.
require("include/shoppingcart.php"); //引入数据库
460.
}
461.
462.
// 列表
463.
$lib_cate = spClass("lib_cate"); // 分类
464.
465.
$cate_list = $lib_cate->getTyCataList();
$this->cate_list = $cate_list;
466.
467.
//require("zhizhu/zz.php"); //引入蜘蛛
468.
469.
// 定时发布 start
- /home/codes/webcode/xmgbuy.com/SpeedPHP/spFunctions.php on line 149
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.
150.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
return $GLOBALS['G_SP']["inst_class"][$class_name];
151.
}
152.
spError($class_name."类定义不存在,请检查。");
153.
}
154.
- /home/codes/webcode/xmgbuy.com/SpeedPHP/spFunctions.php on line 14
9.
function spRun(){
10.
GLOBAL $__controller, $__action;
11.
// 对路由进行自动执行相关操作
12.
spLaunch("router_prefilter");
13.
// 对将要访问的控制器类进行实例化
14.
15.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
// 调用控制器出错将调用路由错误处理函数
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
- /home/codes/webcode/xmgbuy.com/index.php on line 58
53.
),
54.
)
55.
);
56.
require(SP_PATH."/SpeedPHP.php");
57.
import(APP_PATH.'/controller/tplbasis.php'); // 需要先载入top控制器父类
58.
spRun();