0

我在使用 AJAX 和 PHP 创建多字段实时搜索引擎时遇到问题。

到目前为止,不需要搜索多个字段,所以我有一个简单的查询,它只适用于一个字段。

由于使用onkeyup功能进行实时搜索,我发现了一些问题。我需要解释的第一个问题:

表的结构非常简单:zipcode | city

例如,有人输入12345;当然,这将是邮政编码。但是如果有人输入12345 hometown,那么第一个关键字是邮政编码,第二个是城市怎么办?

关键字将通过使用进行拆分,preg_split('/[\s]+/', $search_term)因此我收到一个包含将要搜索的单个关键字的数组。在上述情况下,它将是:key[0] => 12345key[1] => hometown

我使用的查询是这样的:

$where = "";

$search_term = preg_split('/[\s]+/', $search_term); //splits the whole string into single keywords
$total_search_terms = count($search_term); //counts the array-keys from $search_term

foreach ($search_term as $key=>$single_term) {

        $where .= "`zipcode` LIKE '$single_term%' OR `city` LIKE '$single_term%' ";

        if ($key != ($total_search_terms - 1)){ //adds AND to the query in case in case of a non empty array-key 
            $where .= " AND ";
        }

}

$query = $db->query("SELECT COUNT(*) FROM table WHERE $where");
...

好的,到目前为止一切顺利。现在的问题是关键字可以一次又一次地匹配每个字段。

再举一个例子:

如果从上面输入12345 hometown,则表示key[0] => 12345 可以匹配字段zipcodeOR city。此条件等于key[1] => hometown,甚至可以匹配字段zipcodeOR city。因此,即使以其他方式输入:也hometown 12345意味着相同。

这是我遇到的第一个问题。

我正在寻找一种逻辑来构建查询。所以在进入的情况下,12345 hometown我想要这样的东西:

key[0] => 12345匹配字段zipcode不检查key[1] => hometown是否在zipcodeOR中匹配,city因为key[0]匹配已经在zipcode所以它key[1]需要是非常合乎逻辑的city

更新

好的,说我的第二个问题,我想让你看看他的回答,david strachan 他提到当 city 包含多个字符串时会引起问题。假设搜索字符串类似于:

12345 New York

关键是:

key[0] => 12345, key[1] => New, key[2] => York

好的,现在的问题是我可以检查其中一个键是否包含整数,如果字符串长度正好为 5,我知道它将是邮政编码。

key[0] => 12345 //if ( stringlen(key[0|) === 5) === true  && is_int(key[0]) === true) {zipcode}

到目前为止一切都很好,但真正的问题是城市字符串背后的逻辑。我的第一个想法是我可以说所有不包含整数的键都必须是城市,这样我就可以将它们转换为一个键。

key[1] => New, key[2] => York //if ( !is_int(key[1|) === true && !is_int(key[2|) === true)  {$create_one_key = array_fill_keys(key[1], key[1]+key[2]);}

好的,但是如果我以后想添加街道名称怎么办?我不知道如何区分和测试街道名称,甚至城市名称。

4

2 回答 2

1

另一种方法是使用JQuery Autocomplete来搜索 MySQL 数据库。以下代码使用 PDO。

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script type="text/javascript">
jQuery(document).ready(function(){
    $('#zipsearch').autocomplete({source:'suggest.php', minLength:2});
});
</script>
<style type="text/css">
    li.ui-menu-item { font-size:10px}
</style>
</head>
<body>
<h2>jQuery UI Autocomplete - With MySQL  </h2>
<form onsubmit="return false;">
    Search:
    <input id="zipsearch" type="text" size ="60"/>
</form>

建议.php

require("dbinfo.php");//db connection strings
// if the 'term' variable is not sent with the request, exit
if ( !isset($_REQUEST['term']) )
    exit;
$term = $_REQUEST['term'];
 if (is_numeric($term)){
    $query = "SELECT * from ziptest WHERE zip LIKE ? OR address LIKE ? LIMIT 0,10";
  }else{
    $query = "SELECT * from ziptest WHERE city LIKE ? OR state LIKE ? LIMIT 0,10";  
  }
$term.="%";  

// connect to the database  
try {  
    $dbh = new PDO("mysql:host=$host;dbname=$database", $username, $password);  
    $dbh->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );  
  // Prepare statement
    $stmt = $dbh->prepare($query);
    // Assign parameters
    $stmt->bindParam(1,$term);
    $stmt->bindParam(2,$term);
    // setting the fetch mode  
    $stmt->setFetchMode(PDO::FETCH_ASSOC); 
    $stmt->execute();  
    $data = array();
        while($row = $stmt->fetch()) {  
            $data[] = array(
                'label' => $row['address'] .', '. $row['city'] .', '. $row['state'] .', '.$row['zip'] ,
                'value' => "ID ".$row['id'] .': '.$row['address'] .', '. $row['city'] .', '. $row['state'] .', '.$row['zip']
            );
        }
    echo json_encode($data);
}  
catch(PDOException $e) {  
    echo "I'm sorry I'm afraid you can't do that.". $e->getMessage() ;// Remove or modify after testing 
    file_put_contents('PDOErrors.txt',date('[Y-m-d H:i:s]'). $e->getMessage()."\r\n", FILE_APPEND);  
}  
// close the connection
$dbh = null;

演示

于 2013-04-16T20:49:01.710 回答
0

通过添加 0检查$search_term[0]是 string(city) 还是 int(zipcode) 然后相应地格式化查询。

$search_term = '1234 paisley';
$search_term = preg_split('/[\s]+/', $search_term); //splits the whole string into single keywords
$total_search_terms = count($search_term); //counts the array-keys from $search_term
$test = $search_term[0]+0;//If string returns 0
if($total_search_terms == 1){
    if ($test == 0 ){
        $where = "WHERE `city` LIKE `%$search_term[0]%`";
         }else{
        $where = "WHERE `zipcode` LIKE `%$search_term[0]%` ";
        }   
    }else{
    if ($test == 0 ){
        $where = "WHERE `zipcode` LIKE `%$search_term[1]%` AND `city` LIKE `%$search_term[0]%`";
        }else{
        $where = "WHERE `zipcode` LIKE `%$search_term[0]%` AND `city` LIKE `%$search_term[1]%`";
        }   
}   
 $query = "SELECT COUNT(*) FROM table $where";
echo $query;

一个问题是你如何对待纽约。我会告诉你如何解决这个问题。

编辑

纽约$total_search_terms > 2

于 2013-04-14T16:05:40.197 回答