schallfun.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <?php
  2. //区位码
  3. function SearchReturnQwm($t){
  4. return sprintf("%02d%02d",ord($t[0])-160,ord($t[1])-160);
  5. }
  6. //转换字符串
  7. function SearchReturnSaveStr($str){
  8. //所有汉字后添加ASCII的0字符,此法是为了排除特殊中文拆分错误的问题
  9. $str=preg_replace("/[\x80-\xff]{2}/","\\0".chr(0x00),$str);
  10. //拆分的分割符
  11. $search = array(",", "/", "\\", ".", ";", ":", "\"", "!", "~", "`", "^", "(", ")", "?", "-", "\t", "\n", "'", "<", ">", "\r", "\r\n", "$", "&", "%", "#", "@", "+", "=", "{", "}", "[", "]", ":", ")", "(", ".", "。", ",", "!", ";", "“", "”", "‘", "’", "〔", "〕", "、", "—", " ", "《", "》", "-", "…", "【", "】",);
  12. //替换所有的分割符为空格
  13. $str = str_replace($search,' ',$str);
  14. //用正则匹配半角单个字符或者全角单个字符,存入数组$ar
  15. preg_match_all("/[\x80-\xff]?./",$str,$ar);$ar=$ar[0];
  16. //去掉$ar中ASCII为0字符的项目
  17. for($i=0;$i<count($ar);$i++)
  18. {
  19. if($ar[$i]!=chr(0x00))
  20. {
  21. $ar_new[]=$ar[$i];
  22. }
  23. }
  24. $ar=$ar_new;
  25. unset($ar_new);
  26. $oldsw=0;
  27. //把连续的半角存成一个数组下标,或者全角的每2个字符存成一个数组的下标
  28. for($ar_str='',$i=0;$i<count($ar);$i++)
  29. {
  30. $sw=strlen($ar[$i]);
  31. if($i>0 and $sw!=$oldsw)
  32. {
  33. $ar_str.=" ";
  34. }
  35. if($sw==1)
  36. {
  37. $ar_str.=$ar[$i];
  38. }
  39. else
  40. {
  41. if(strlen($ar[$i+1])==2)
  42. {
  43. $ar_str.=SearchReturnQwm($ar[$i]).SearchReturnQwm($ar[$i+1]).' ';
  44. }
  45. elseif($oldsw==1 or $oldsw==0)
  46. {
  47. $ar_str.=SearchReturnQwm($ar[$i]);
  48. }
  49. }
  50. $oldsw=$sw;
  51. }
  52. //去掉连续的空格
  53. $ar_str=trim(preg_replace("# {1,}#i"," ",$ar_str));
  54. //返回拆分后的结果
  55. return $ar_str;
  56. }
  57. //全站搜索去除html
  58. function ClearSearchAllHtml($value){
  59. $value=str_replace(array("\r\n","&nbsp;","[!--empirenews.page--]","[/!--empirenews.page--]"),array("","","",""),$value);
  60. $value=strip_tags($value);
  61. $value=trim($value,"\r\n");
  62. $value=SearchAllChangeChar($value);//转编码
  63. return $value;
  64. }
  65. //转换编码
  66. function SearchAllChangeChar($value){
  67. global $ecms_config,$char,$targetchar,$iconv;
  68. if($ecms_config['sets']['pagechar']!='gb2312')
  69. {
  70. $value=$iconv->Convert($char,$targetchar,$value);
  71. }
  72. return $value;
  73. }
  74. //导入数据
  75. function LoadSearchAll($lid,$start,$userid,$username){
  76. global $empire,$dbtbpre,$class_r,$fun_r,$public_r,$emod_r;
  77. $lid=(int)$lid;
  78. if(empty($lid))
  79. {
  80. printerror('ErrorUrl','');
  81. }
  82. $lr=$empire->fetch1("select tbname,titlefield,infotextfield,loadnum,lastid from {$dbtbpre}enewssearchall_load where lid='$lid'");
  83. if(empty($lr['tbname']))
  84. {
  85. printerror('ErrorUrl','');
  86. }
  87. //不导入栏目
  88. $pr=$empire->fetch1("select schallnotcid from {$dbtbpre}enewspublic limit 1");
  89. $line=$lr['loadnum'];
  90. if(empty($line))
  91. {
  92. $line=300;
  93. }
  94. $start=(int)$start;
  95. if($start<$lr['lastid'])
  96. {
  97. $start=$lr['lastid'];
  98. }
  99. //字段
  100. $selectdtf='';
  101. $selectf='';
  102. $savetxtf='';
  103. $fsql=$empire->query("select tid,f,savetxt,tbdataf from {$dbtbpre}enewsf where (f='$lr[titlefield]' or f='$lr[infotextfield]') and tbname='$lr[tbname]' limit 2");
  104. while($fr=$empire->fetch($fsql))
  105. {
  106. if($fr['tbdataf'])
  107. {
  108. $selectdtf.=','.$fr[f];
  109. }
  110. else
  111. {
  112. $selectf.=','.$fr[f];
  113. }
  114. if($fr['savetxt'])
  115. {
  116. $savetxtf=$fr[f];
  117. }
  118. }
  119. $b=0;
  120. $sql=$empire->query("select id,stb,classid,isurl,newstime".$selectf." from {$dbtbpre}ecms_".$lr['tbname']." where id>$start order by id limit ".$line);
  121. while($r=$empire->fetch($sql))
  122. {
  123. $b=1;
  124. $newstart=$r['id'];
  125. if($r['isurl'])
  126. {
  127. continue;
  128. }
  129. if(empty($class_r[$r[classid]]['tbname']))
  130. {
  131. continue;
  132. }
  133. if(strstr($pr['schallnotcid'],','.$r[classid].','))
  134. {
  135. continue;
  136. }
  137. //重复
  138. $havenum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssearchall where id='$r[id]' and classid='$r[classid]' limit 1");
  139. if($havenum)
  140. {
  141. continue;
  142. }
  143. //副表
  144. if($selectdtf)
  145. {
  146. $finfor=$empire->fetch1("select id".$selectdtf." from {$dbtbpre}ecms_".$lr['tbname']."_data_".$r[stb]." where id='$r[id]'");
  147. $r=array_merge($r,$finfor);
  148. }
  149. //存文本
  150. if($savetxtf)
  151. {
  152. $r[$savetxtf]=GetTxtFieldText($r[$savetxtf]);
  153. }
  154. $infotext=$r[$lr[infotextfield]];
  155. $title=$r[$lr[titlefield]];
  156. $infotime=$r[newstime];
  157. $title=SearchReturnSaveStr(ClearSearchAllHtml(stripSlashes($title)));
  158. $infotext=SearchReturnSaveStr(ClearSearchAllHtml(stripSlashes($infotext)));
  159. $empire->query("insert into {$dbtbpre}enewssearchall(sid,id,classid,title,infotime,infotext) values(NULL,'$r[id]','$r[classid]','".addslashes($title)."','$infotime','".addslashes($infotext)."');");
  160. }
  161. if(empty($b))
  162. {
  163. $lasttime=time();
  164. if(empty($newstart))
  165. {
  166. $newstart=$start;
  167. }
  168. $empire->query("update {$dbtbpre}enewssearchall_load set lasttime='$lasttime',lastid='$newstart' where lid='$lid'");
  169. echo "<link rel=\"stylesheet\" href=\"../../data/images/css.css\" type=\"text/css\"><center><b>".$lr['tbname'].$fun_r[LoadSearchAllIsOK]."</b></center>";
  170. db_close();
  171. $empire=null;
  172. exit();
  173. }
  174. echo"<link rel=\"stylesheet\" href=\"../../data/images/css.css\" type=\"text/css\"><meta http-equiv=\"refresh\" content=\"0;url=LoadSearchAll.php?enews=LoadSearchAll&lid=$lid&start=$newstart".hReturnEcmsHashStrHref(0)."\">".$fun_r[OneLoadSearchAllSuccess]."(ID:<font color=red><b>".$newstart."</b></font>)";
  175. exit();
  176. }
  177. //返回搜索SQL
  178. function ReturnSearchAllSql($add){
  179. global $public_r,$class_r;
  180. //关闭
  181. if(empty($public_r['openschall']))
  182. {
  183. printerror("SchallClose",'',1);
  184. }
  185. //关键字
  186. $keyboard=RepPostVar2($add['keyboard']);
  187. if(!trim($keyboard))
  188. {
  189. printerror('EmptySchallKeyboard','',1);
  190. }
  191. $strlen=strlen($keyboard);
  192. if($strlen<$public_r['schallminlen']||$strlen>$public_r['schallmaxlen'])
  193. {
  194. printerror('SchallMinKeyboard','',1);
  195. }
  196. $returnr['keyboard']=ehtmlspecialchars($keyboard);
  197. $returnr['search']="&keyboard=".$keyboard;
  198. //字段
  199. $field=(int)$add['field'];
  200. if($field)
  201. {
  202. $returnr['search'].="&field=".$field;
  203. }
  204. if($field==1)//标题和全文
  205. {
  206. if($public_r['schallfield']!=1)
  207. {
  208. printerror('SchallNotOpenTitleText','',1);
  209. }
  210. $sf="title,infotext";
  211. }
  212. elseif($field==2)//标题
  213. {
  214. if($public_r['schallfield']==3)
  215. {
  216. printerror('SchallNotOpenTitle','',1);
  217. }
  218. $sf="title";
  219. }
  220. elseif($field==3)//全文
  221. {
  222. if($public_r['schallfield']==2)
  223. {
  224. printerror('SchallNotOpenText','',1);
  225. }
  226. $sf="infotext";
  227. }
  228. else
  229. {
  230. $sf=ReturnSearchAllField(0);
  231. }
  232. $where='';
  233. //栏目
  234. $classid=RepPostVar($add['classid']);
  235. if($classid)
  236. {
  237. $returnr['search'].="&classid=".$classid;
  238. if(strstr($classid,","))//多栏目
  239. {
  240. $son_r=sys_ReturnMoreClass($classid,1);
  241. $where.='('.$son_r[1].') and ';
  242. }
  243. else
  244. {
  245. $classid=(int)$classid;
  246. $where.=$class_r[$classid][islast]?"classid='$classid' and ":ReturnClass($class_r[$classid][sonclass]).' and ';
  247. }
  248. }
  249. //关键字
  250. if(strstr($keyboard,' '))
  251. {
  252. $andkey='';
  253. $keyr=explode(' ',$keyboard);
  254. $kcount=count($keyr);
  255. for($i=0;$i<$kcount;$i++)
  256. {
  257. if(strlen($keyr[$i])<$public_r['schallminlen'])
  258. {
  259. continue;
  260. }
  261. $kb=SearchAllChangeChar($keyr[$i]);//转码
  262. $kb=SearchReturnSaveStr($kb);
  263. $kb=RepPostVar2($kb);
  264. if(!trim($kb))
  265. {
  266. continue;
  267. }
  268. $where.=$andkey."MATCH(".$sf.") AGAINST('".$kb."' IN BOOLEAN MODE)";
  269. $andkey=' and ';
  270. }
  271. if(empty($where))
  272. {
  273. printerror('SchallMinKeyboard','',1);
  274. }
  275. }
  276. else
  277. {
  278. $keyboard=SearchAllChangeChar($keyboard);//转码
  279. $keyboard=SearchReturnSaveStr($keyboard);
  280. $keyboard=RepPostVar2($keyboard);
  281. if(!trim($keyboard))
  282. {
  283. printerror('EmptySchallKeyboard','',1);
  284. }
  285. $where.="MATCH(".$sf.") AGAINST('".$keyboard."' IN BOOLEAN MODE)";
  286. }
  287. $returnr['where']=$where;
  288. return $returnr;
  289. }
  290. //返回搜索字段
  291. function ReturnSearchAllField($field){
  292. global $public_r;
  293. if($public_r['schallfield']==1)
  294. {
  295. $sf="title,infotext";
  296. }
  297. elseif($public_r['schallfield']==3)
  298. {
  299. $sf="infotext";
  300. }
  301. else
  302. {
  303. $sf="title";
  304. }
  305. return $sf;
  306. }
  307. ?>