返回列表

[Discuz!] 用户搜索加入身高区间

搜索用户的界面身高搜索只能按固定值搜索,很多站长希望像年龄一样能按区间搜索,修改方法如下:
修改/source/language/home/lang_template.php
找到1403行
  1. 'age_segment' => '年龄段',
复制代码
下面加入
  1. 'height_segment' => '身高区间',
复制代码
修改/source/include/spacecp/spacecp_search.php
第65行
  1. $havefield = 0;
复制代码
上面插入
  1. $startheight = $endheight = 0;
  2.         if($_GET['endheight']) {
  3.                 $endheight = intval($_GET['endheight']);
  4.         }
  5.         if($_GET['startheight']) {
  6.                 $startheight = intval($_GET['startheight']);
  7.         }

  8.         if($startheight && $endheight && $endheight > $startheight) {
  9.                 $wherearr[] = 'sf.'.DB::field('height', $startheight, '>=').' AND sf.'.DB::field('height', $endheight, '<=');
  10.         } else if($startheight && empty($endheight)) {
  11.                 $wherearr[] = 'sf.'.DB::field('height', $startheight, '>=');
  12.         } else if(empty($startheight) && $endheight) {
  13.                 $wherearr[] = 'sf.'.DB::field('height', $endheight, '<=');
  14.         }
复制代码
还是这个文件,第82行左右搜索
  1. if($havefield || $startage || $endage) {
复制代码
替换为
  1. if($havefield || $startage || $endage|| $startheight || $endheight) {
复制代码
修改template/default/home/spacecp_search.htm
第272行左右搜索
  1. <tr>
  2. <th>{lang upload_avatar}</th>
复制代码
注意在<tr>上面插入以下代码:
  1. <tr>
  2.                                                                 <th>{lang height_segment}</th>
  3.                                                                 <td><input type="text" name="startheight" value="" size="10" class="px" style="width: 114px;" /> ~ <input type="text" name="en
  4. dheight" value="" size="10" class="px" style="width: 114px;" /></td>
  5.                                                         </tr>
复制代码

返回列表