所以我有一个表单,搜索公司列表,看看该公司是否在该网站上注册。
当公司名称为三个或更少字符时,我可以看到它在数据库中,结果不会显示。
例如,如果公司名称为“ABB Eutech”且搜索结果为ABB,则搜索返回0.
但是,如果您搜索Eutech,则搜索会返回结果。
这是我正在使用的代码:
<?php
$out = '';
if ((isset($_POST['companysearch-name'])) && ($_POST['companysearch-name']==NULL)) {
$out .= '<h3>No matches. Please enter a company name.</h3>';
} else if (isset($_POST['companysearch-name'])) {
$queryString = htmlspecialchars($_POST['companysearch-name'],ENT_QUOTES);
if(strlen($queryString) >0) {
$query = $wpdb->get_results("SELECT DISTINCT (company_name) FROM wp_companies WHERE MATCH (company_name) AGAINST ('$queryString')");
$searchStr = "%" . $queryString . "%";
$searchStr = str_replace(" ","%",$searchStr);
$numresults = count($query);
if($query) {
$out .= '<div><ul>';
foreach($query as $result):
$out .= '<li>'.$result->company_name.'</li>';
endforeach;
$out .= '</ul></div>';
$out .= "<p>Is your company on this list? If YES, your company already has the scheme in place and you can setup a donation right now.</p>";
$out .= '<a class="button" href="/donate/"><span>Start Giving</span><b></b></a>';
} else {
$out .= '<h3>No matches found.</h3>';
$out .= "<p>Can't find your employer? They may have only just signed up - <a href='/contact-us/'>contact us</a> and we'll check it out for you.</p>";
}
}
}
?>
任何帮助都很受欢迎! ......温柔,这是我的第一次。
答案 0 :(得分:4)
默认情况下,MySQL中的全文索引会省略包含三个或更少字符的单词。
要索引的单词的最小和最大长度由。定义 ft_min_word_len和ft_max_word_len系统变量。 (见章节 5.1.3,“服务器系统变量”。)默认最小值为四个字符;默认最大值取决于版本。如果你改变了 要么是值,你必须重建你的FULLTEXT索引。例如,如果 你想要搜索三个字符的单词,你可以设置 通过在选项中添加以下行来ft_min_word_len变量 file:[mysqld] ft_min_word_len = 3
然后重新启动服务器并重建您的FULLTEXT索引。注意 特别是关于myisamchk的说明 在此列表之后。
http://dev.mysql.com/doc/refman/5.0/en/fulltext-fine-tuning.html