gpt4 book ai didi

PHP:如何分析搜索表达式并检索值?

转载 作者:行者123 更新时间:2023-11-29 14:53:48 25 4
gpt4 key购买 nike


我正在尝试构建一个搜索系统并检索匹配的记录。在这种情况下..我想让用户使用一些特殊的字符来准确构建他们的请求。所以我把这些符号,然后将它们转换为正确的 SQL:
+ 应转换为 AND
/ 应转换为 OR
" 应转换为 ()
例如,当用户输入:“书/笔”+纸
它应该转换为 SQL WHERE 子句:
( (myfield LIKE "%book%") OR (myfield LIKE "%pen%") ) AND (myfield LIKE "%paper%")
我用 switch case 和数组实现了这个。但我想还有另一种快速方法可以做到这一点(例如 regEx)。你有解决办法吗?

注1:我应该收集该表达式中的所有术语并将它们保存在另一个表中。所以,我需要将它们收集在一个数组中。
注2:术语可以用世界上所有语言书写!从英语到阿拉伯语、波斯语,..可能是中文!!!!

谢谢

最佳答案

尝试一下:

$str = '"book/pen"+paper';
// First: replace all keywords (assuming they don't contain " / + by SQL LIKE
$str = preg_replace('#([^"/+]+)#', "(myfield LIKE '%$1%')", $str);
// then replace / by OR
$str = preg_replace("#/#", " OR ", $str);
// then replace + by AND
$str = preg_replace("#\+#", " AND ", $str);
// and finaly replace pair of "" by ()
$str = preg_replace('/"([^"]+)"/', "($1)", $str);
echo $str,"\n";

输出:

((myfield LIKE '%book%') OR (myfield LIKE '%pen%')) AND (myfield LIKE '%paper%')

关于PHP:如何分析搜索表达式并检索值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5131752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com