我有客户对我正在做的员工管理项目的这个新要求,以允许他们的用户进行自定义布尔搜索。
基本上允许他们使用:AND、OR、NOT、括号和引号。
实现这一点的最佳方法是什么?我已经检查了 mysql,他们使用不同的语法。
这是测试场景:
要求: 搜索具有精英或老兵级别且来自新加坡的魔术师或野蛮人
布尔字符串:( "Magician" OR "Barbarian") AND (Elite OR "Veteran Level") and Singaporean
这是我将考虑修改的代码之一,我从基于纯 PHP 的布尔字符串搜索中获得
function booleanSearch($content, $search) {
$criteria = str_getcsv($search, ' ');
while ($criteria) {
$not = false;
$q = array_shift($criteria);
if (substr($q, 0, 2) === '-"') {
$not = true;
while (substr($q, -1) != '"') {
$q .= " " . array_shift($criteria);
}
$q = substr($q, 2, -1);
}
else if (substr($q, 0, 1) === '-' && strpos($q, ' ') === false) {
$not = true;
$q = substr($q, 1);
}
$found = strpos($content, $q) !== false;
if ($found === $not) {
return false;
}
}
return true;
}