UPDATE news SET status = 0 WHERE time >= '1732286883' and time <= '1732294083'
执行错误: Query execution was interrupted

57.      {
58.          $this->arrSql[] = $sql;
59.          if( $result mysql_query($sql$this->conn) ){
60.              return $result;
61.          }else{
62.              spError("{$sql}<br />执行错误: " mysql_error());
63.          }
64.      }
65.      
66.      /**
67.       返回影响行数
296.              $value $this->escape($value);
297.              $vals[] = "{$key} = {$value}";
298.          }
299.          $values join(", ",$vals);
300.          $sql "UPDATE {$this->tbl_name} SET {$values} {$where}";
301.          return $this->_db->exec($sql);
302.      }
303.      
304.      /**
305.       替换数据,根据条件替换存在的记录,如记录不存在,则将条件与替换数据相加并新增一条记录。
306.       
470.          $newsObj spClass("lib_news");    // 分类
471.          $strat_time_ds strtotime(date('Y-m-d H:i:s',strtotime('-1 hours')));
472.          $end_time_ds strtotime(date('Y-m-d H:i:s',strtotime('+1 hours')));
473.          $conditions_ds "time >= '".$strat_time_ds."' and time <= '".$end_time_ds."' ";
474.          $Obj_timing =  $newsObj->findAll($conditions_ds,"id desc"); 
475.          $newsObj->update($conditions_ds,array('status'=>0));
476.          // 定时发布 end
477. 
478.          // 后台菜单设置 start
479.          $adminmenu $arrayName['menuadmin']['event']; // 1-管理菜单,0-关闭
480.          $this->adminmenu $adminmenu;
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.      }
53.          ),
54.       )
55.  );
56.  require(SP_PATH."/SpeedPHP.php");
57.  import(APP_PATH.'/controller/tplbasis.php'); // 需要先载入top控制器父类
58.  spRun();