3

我有客户对我正在做的员工管理项目的这个新要求,以允许他们的用户进行自定义布尔搜索。

基本上允许他们使用: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;
}
4

1 回答 1

2

您只需要一个查询构建器实现。根据您的描述,自行推出将是微不足道的,否则,有许多软件包可以让生活更轻松。Spatie 的查询构建器运行良好:https ://github.com/spatie/laravel-query-builder

于 2018-05-06T11:47:38.633 回答