帮助建立一个基本的PHP搜索引擎

时间:2009-11-16 00:39:18

标签: php search kohana

我到处寻找教程,但似乎无法得到一个好的...

  1. 包含分页,列标题排序和多重过滤的搜索页面(过滤器位于复选框中)
  2. 问题:  有分页工作,排序工作,但不能让他们一起工作。添加以使过滤器使用分页和排序的结果集

    我想单独使用php和单独使用GET表单方法(稍后会出现javascript,我想在此处应用渐进增强功能)

    我不知道如何让三个功能(分页,排序和过滤)一起工作......想要我想实现

    这是我的控制器代码

    function index(){
            $resultset = null;
            if ($this->input->get()){
                // searching
                if ($this->input->get('keyword')){
                    $resultset = $this->hotel->searchterm($_GET['keyword']);
                }
    
                if (!$this->input->get('keyword')){
                    $searchkeys = array();
                    foreach($_GET as $key => $value){
                        $searchkeys[$key] = $value;
                    }
                    $resultset = $this->hotel->searchcat($searchkeys);
                }
    
                // sorting
                if ($this->input->get('sortby')){
                    $resultset = $this->hotel->sortdefault($_GET['sortby']);
                }
    
                if ($this->input->get('keyword') && $this->input->get('sortby')){
                    $resultset = $this->hotel->sortdefault($_GET['sortby']);
                }
            }else{
                $resultset = ORM::factory('hotel')->limit(15)->find_all();
            }
            $this->template->title = 'The Hotel Inventory :: Search';
            $this->template->sidebar = new View('search-sidebar');
            $this->template->featured = new View('search-details');
            $this->template->featured->data = $resultset;
        }
    

    酒店图书馆的功能:

    public function sortdefault($sort, $resultset=null){
            if (!$this->session->get('sortorder')){
                $_SESSION['sortorder'] = 'asc';
            }else if ($this->session->get('sortorder') == 'asc'){
                $_SESSION['sortorder'] = 'desc';
            }else{
                $_SESSION['sortorder'] = 'asc';
            }
    
            $sortorder = $this->session->get('sortorder');
                $sortby = '';
                switch ($sort){
                    case 'name' :
                        $sortby = 'name';
                        break;
                    case 'location':
                        $sortby = 'location';
                        break;
                    case 'price' :
                        $sortby = 'price';
                }
                if (is_null($resultset)){
                    $query = ORM::factory('hotel')->
                    select('id, name, location, room, price, date_added, url_path')->
                        limit(15)->orderby($sortby, $sortorder)->find_all();
                }
                return $query;
        }
    

    视图中的表格:

    <table id="tableresults" cellpadding="0" cellspacing="0" border="1" >
               <thead>
                   <tr style="height: 20px;">
                       <th>Image</th>
                       <th><?php echo (isset($_SESSION['searchterm'])) ?
                            html::anchor('search/index?keyword=' . $_SESSION['searchterm'] . '&sortby=name','Hotel Name') :
                            html::anchor('search/index?sortby=name','Hotel Name');?></th>
                       <th><?php echo html::anchor('search/index?sortby=location','Location');?></th>
                       <th><?php echo html::anchor('search/index?sortby=price','Price');?></th>
                       <th>Actions</th>
                   </tr>
               </thead>
    
               <tbody>
               <?php
               foreach($data as $d){
                   echo '<tr class="result">';
                   echo '<td>&nbsp;</td>';
                   echo '<td>' . html::anchor('hotel/' . $d->url_path, $d->name) . '</td>';
                   echo '<td>' . $d->location . '</td>';
                   echo '<td>USD ' . $this->util->money($d->price);
                   echo '<td>&nbsp</td>';
                   echo '</tr>';
               }
               ?>
               </tbody>
    
    1. 用户搜索项目(单项搜索)或使用多个类别(多项搜索)
    2. 结果是分页的,以表格形式显示,每个列标题都包含指向排序方法的链接(sort.php?by = title)
    3. 用户可以过滤已排序的表格(或者如果他/她没有进行任何排序,则会过滤当前表格)
    4. 如果我应用所有过滤器(没有页面和排序),这里是url的样子:

      http://localhost/thi/search/index.html?filter[]=featured&filter[]=bankowned&filter[]=new&filter[]=owner&filter[]=broker&filter[]=bank
      
      到目前为止它看起来很乱,但我想这就是它与搜索引擎网址的关系:)

2 个答案:

答案 0 :(得分:0)

如果我错了,请纠正我。 但其中一种方法是将过滤器设置为GET变量

然后你就可以使用独立的PHP解决方案和javascript了。

答案 1 :(得分:0)

  

我不知道如何让三个功能(分页,排序和过滤)一起工作......想要我想实现

GET提交与POST提交略有不同,因为您通过提交INPUT一次性传递所有变量。

因此,要使用GET提交正确传递相同的数据,您需要在A HREF链接中传递每个变量。

要构建此功能,请尝试以下操作:

$URLsubmit=(TheSubmitURL).'?';
foreach ($submit_data as $key => $value)
  {
  $URLsubmit.=$key.'='.$value.'&';
  }
$URLsubmit = substr($URLsubmit,0,strlen($URLsubmit)-1); // remove last '&'

当然,您需要清理数据URL友好并创建计数器以增加每个A HREF页面链接的分页。

echo '<A HREF="'.$URLsubmit.'">';

希望这会指出你正确的方向。

BTW,除非您设置会话cookie并使用XSRF验证,否则使用$ _SESSION的方式是一个很大的安全风险。