当前位置: 首页 > 站长资讯 > 正文页面

discuz教程:用户搜索加入身高区间

搜索用户的界面身高搜索只能按固定值搜索,很多站长希望像年龄一样能按区间搜索,修改方法如下:0Da网站目录_网站网址收录与提交入口

修改/source/language/home/lang_template.php0Da网站目录_网站网址收录与提交入口

找到1403行0Da网站目录_网站网址收录与提交入口

'age_segment' => '年龄段',0Da网站目录_网站网址收录与提交入口

下面加入0Da网站目录_网站网址收录与提交入口

'height_segment' => '身高区间',0Da网站目录_网站网址收录与提交入口

修改/source/include/spacecp/spacecp_search.php0Da网站目录_网站网址收录与提交入口

第65行0Da网站目录_网站网址收录与提交入口

$havefield = 0;0Da网站目录_网站网址收录与提交入口

上面插入0Da网站目录_网站网址收录与提交入口

$startheight = $endheight = 0;0Da网站目录_网站网址收录与提交入口

if($_GET['endheight']) {0Da网站目录_网站网址收录与提交入口

$endheight = intval($_GET['endheight']);0Da网站目录_网站网址收录与提交入口

}0Da网站目录_网站网址收录与提交入口

if($_GET['startheight']) {0Da网站目录_网站网址收录与提交入口

$startheight = intval($_GET['startheight']);0Da网站目录_网站网址收录与提交入口

}0Da网站目录_网站网址收录与提交入口

if($startheight && $endheight && $endheight > $startheight) {0Da网站目录_网站网址收录与提交入口

$wherearr[] = 'sf.'.DB::field('height', $startheight, '>=').' AND sf.'.DB::field('height', $endheight, '<=');0Da网站目录_网站网址收录与提交入口

} else if($startheight && empty($endheight)) {0Da网站目录_网站网址收录与提交入口

$wherearr[] = 'sf.'.DB::field('height', $startheight, '>=');0Da网站目录_网站网址收录与提交入口

} else if(empty($startheight) && $endheight) {0Da网站目录_网站网址收录与提交入口

$wherearr[] = 'sf.'.DB::field('height', $endheight, '<=');0Da网站目录_网站网址收录与提交入口

}0Da网站目录_网站网址收录与提交入口

还是这个文件,第82行左右搜索0Da网站目录_网站网址收录与提交入口

if($havefield || $startage || $endage) {0Da网站目录_网站网址收录与提交入口

替换为0Da网站目录_网站网址收录与提交入口

if($havefield || $startage || $endage|| $startheight || $endheight) {0Da网站目录_网站网址收录与提交入口

修改template/default/home/spacecp_search.htm0Da网站目录_网站网址收录与提交入口

第272行左右搜索0Da网站目录_网站网址收录与提交入口

<tr>0Da网站目录_网站网址收录与提交入口

<th>{lang upload_avatar}</th>0Da网站目录_网站网址收录与提交入口

注意在<tr>上面插入以下代码:0Da网站目录_网站网址收录与提交入口

<tr>0Da网站目录_网站网址收录与提交入口

<th>{lang height_segment}</th>0Da网站目录_网站网址收录与提交入口

<td><input type="text" name="startheight" value="" size="10" class="px" style="width: 114px;" /> ~ <input type="text" name="en0Da网站目录_网站网址收录与提交入口

dheight" value="" size="10" class="px" style="width: 114px;" /></td>0Da网站目录_网站网址收录与提交入口

</tr>0Da网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章