📄 index.php
字号:
<?php
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/class.php");
include("../../class/q_functions.php");
include "../".LoadLang("pub/fun.php");
$editor=1;
$link=db_connect();
$empire=new mysqlquery();
$getvar=$_GET['getvar'];
if(empty($getvar))
{
$getfrom="history.go(-1)";
}
else
{
$getfrom="../../../search";
}
//搜索结果
$searchid=(int)$_GET['searchid'];
if(empty($searchid))
{printerror("SearchNotRecord",$getfrom,1);}
$page=(int)$_GET['page'];
$start=(int)$_GET['start'];
$search="&searchid=".$searchid;
$add="";
$page_line=$public_r['search_pagenum'];//每页显示链接数
$line=$public_r['search_num'];//每页显示记录数
$offset=$start+$page*$line;//总偏移量
$search_r=$empire->fetch1("select searchid,keyboard,result_num,classid,searchclass,orderby,myorder,starttime,endtime,startprice,endprice,tbname,tempid,allsame from {$dbtbpre}enewssearch where searchid='$searchid'");
if(empty($search_r['searchid']))
{printerror("SearchNotRecord",$getfrom,1);}
//时间范围
if($search_r[endtime]!="0000-00-00")
{
$starttime=$search_r[starttime]." 00:00:00";
$endtime=$search_r[endtime]." 11:59:59";
$add=" and newstime>='$starttime' and newstime<='$endtime'";
}
//价格
if($search_r[endprice])
{
$add.=" and price>=".$search_r[startprice]." and price<=".$search_r[endprice];
}
$have_class=1;
if($search_r[classid])
{
//终极栏目
if($class_r[$search_r[classid]][islast])
{
$add.=" and classid='$search_r[classid]'";
$have_class=0;
}
else
{
$where=ReturnClass($class_r[$search_r[classid]][sonclass]);
$add.=" and (".$where.")";
}
$tbname=$class_r[$search_r[classid]][tbname];
$modid=$class_r[$search_r[classid]][modid];
}
elseif($search_r['tbname'])
{
$tbname=$search_r['tbname'];
}
else
{
$tbname=$public_r[tbname];
}
//完全
$sfsql=" like '%[!--key--]%'";
if($search_r['allsame'])
{
$sfsql="='[!--key--]'";
}
//搜索字段
$fr=explode(",",$search_r[searchclass]);
$searchfield=$search_r[searchclass];
for($j=0;$j<count($fr);$j++)
{
if($j==0)
{$or="";}
else
{$or=" or ";}
$sf.=$or.$fr[$j].$sfsql;
}
//---------------多个关键字
$kr=explode(" ",$search_r[keyboard]);
$keyboard=$search_r[keyboard];
for($i=0;$i<count($kr);$i++)
{
if(empty($kr[$i]))
{continue;}
$add.=" and (".str_replace("[!--key--]",$kr[$i],$sf).")";
}
if($search_r[orderby]==1)//信息ID
{$myorder="id";}
elseif($search_r[orderby]==2)//评论数
{$myorder="plnum";}
elseif($search_r[orderby]==3)//点击率
{$myorder="onclick";}
elseif($search_r[orderby]==4)//下载数
{$myorder="totaldown";}
else//时间
{$myorder="newstime";}
if(empty($search_r[myorder]))
{$myorder.=" desc";}
//当前时间
$todaytime=date("Y-m-d H:i:s");
$query="select * from {$dbtbpre}ecms_".$tbname." where checked=1".$add;
$num=$search_r[result_num];
$query.=" order by ".$myorder." limit $offset,$line";
$sql=$empire->query($query);
$listpage=page1($num,$line,$page_line,$start,$page,$search);
//取得模板
if($search_r['tempid'])
{
$tempr=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle from ".GetTemptb("enewssearchtemp")." where tempid='".$search_r['tempid']."' limit 1");
}
elseif(empty($class_r[$search_r[classid]][searchtempid]))
{
$tempr=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle from ".GetTemptb("enewssearchtemp")." where isdefault=1 limit 1");
}
else
{
$tempr=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle from ".GetTemptb("enewssearchtemp")." where tempid='".$class_r[$search_r[classid]][searchtempid]."' limit 1");
}
//替换公共模板变量
$listtemp=$tempr[temptext];
if($public_r['searchtempvar'])
{
$listtemp=ReplaceTempvar($listtemp);
}
$listtemp=str_replace("[!--show.page--]",$listpage,stripSlashes($listtemp));
$listtemp=str_replace("[!--keyboard--]",$keyboard,$listtemp);
$listtemp=str_replace("[!--ecms.num--]",$num,$listtemp);
$listtemp=str_replace("[!--news.url--]",$public_r[newsurl],$listtemp);
$listtemp=str_replace("[!--pagetitle--]",$fun_r['adsearch'],$listtemp);
$rownum=$tempr[rownum];
if(empty($rownum))
{$rownum=1;}
$formatdate=$tempr[showdate];
$subnews=$tempr[subnews];
$subtitle=$tempr[subtitle];
$modid=$tempr[modid];
$listvar=stripSlashes($tempr[listvar]);
//字段
$ret_r=ReturnAddF($tempr[modid],2);
$field=$ret_r[0];
//取得列表模板
$list_exp="[!--empirenews.listtemp--]";
$list_r=explode($list_exp,$listtemp);
$listtext=$list_r[1];
$no=$offset;
$changerow=1;
while($r=$empire->fetch($sql))
{
//替换列表变量
$repvar=ReplaceListVars($no,$listvar,$subnews,$subtitle,$formatdate,$url,$have_class,$r,$field);
$listtext=str_replace("<!--list.var".$changerow."-->",$repvar,$listtext);
$changerow+=1;
//超过行数
if($changerow>$rownum)
{
$changerow=1;
$string.=$listtext;
$listtext=$list_r[1];
}
$no++;
}
db_close();
$empire=null;
//多余数据
if($changerow<=$rownum&&$listtext<>$list_r[1])
{
$string.=$listtext;
}
$string=$list_r[0].$string.$list_r[2];
echo $string;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -