PHP布尔搜索

时间:2012-04-25 12:15:26

标签: php regex boolean preg-split

我正在尝试将用户输入的字符串转换为MySQL布尔搜索。我有以下功能,适用于许多场景,但它不适用于双引号。

例如,它使用以下字符串:

String1:技术不是经理 String2:技术或经理或管理员

现在唯一不能正常工作的是当您输入用双引号括起来的短语时。例如:

String3(不起作用):“技术作家”而非“文档管理员”

这是我正在使用的功能:

function booltostring($input)
{
    $input = strtolower($input);
    $out = "";
    $plusflag = false;
    $minusflag = false;

    $forms = preg_split("%(and|or|not)%",$input,-1,PREG_SPLIT_DELIM_CAPTURE);
    $forms = array_map('trim',$forms);

    for($i = 0; $i < count($forms); $i++) 
    {
        switch($forms[$i]) 
        {
            case 'and':
                $plusflag = true;
                $minusflag = false;
                if(count(explode(' ',$forms[$i+1])) > 1) 
                {
                    $out .= '"+'.$forms[$i+1].'" ';
                } 
                else 
                {
                    $out .= "+".$forms[$i+1]." ";
                }
                $i++;
            break;
            case 'or':
                if(strpos($forms[$i-1],'OR')>-1 || strpos($forms[$i-1],'or')>-1)
                {
                    $plusflag = true;
                }
                if(count(explode(' ',$forms[$i+1])) > 1) 
                {
                    $out .= '"'.(($minusflag) ? "-" : "").$forms[$i+1].'" ';
                } 
                else 
                {
                    $out .= (($minusflag) ? "-" : "").$forms[$i+1]." ";
                }
                $i++;
            break;
            case 'not':
                $plusflag = false;
                $minusflag = true;
                if(count(explode(' ',$forms[$i+1])) > 1) 
                {
                    $out .= '"-'.$forms[$i+1].'" ';
                } 
                else 
                {
                    $out .= "-".$forms[$i+1]." ";
                }
                $i++;
            break;
            default:
                if(strpos($forms[$i+1],'OR')>-1 || strpos($forms[$i+1],'or')>-1)
                {
                    $plusflag = false;
                }
                if(strpos($forms[$i+1],'AND')>-1 || strpos($forms[$i+1],'and')>-1)
                {
                    $plusflag = true;
                }
                if(count(explode(' ',$forms[$i])) > 1) 
                {
                    $out .= (($plusflag) ? "+" : "")."\"".$forms[$i]."\" ";
                }
                else
                {
                    $out .= (($plusflag) ? "+" : "").$forms[$i]." ";
                }
            break;
      }
    }
    $out = trim($out);

    return $out;
}

2 个答案:

答案 0 :(得分:0)

"technical writer" not "document manager"

此字符串不起作用,因为您没有从字符串

中删除双引号

使用trim函数

删除它们

修改

USE TRIM关于个人价值观,即“技术作家”,“文件管理员”

喜欢这个trim('"document manager"','"');

答案 1 :(得分:0)

您只需要删除手动添加的双引号,然后就应该没问题了。

例如这个

$out .= '"+'.$forms[$i+1].'" ';

因为那些双引号已经在输入字符串