PHP里有没有像htmlspecialchars()那样的把要用在LIKE中的字符串中的通配符转换成转义字符的函数?

WBOY
Release: 2016-06-23 14:08:18
Original
767 people have browsed it

比如这样:
% -> \%
_ -> \_
我怕漏掉什么东西,所以如果有函数的话感觉还是用函数好一点。


回复讨论(解决方案)

为什么要这样做呢?不理解

为什么要这样做呢?不理解
如果不转换的话,如果用户要搜索的关键词中包含通配符的话,会出现错误。比如用户要搜“%_”,LIKE字段应该使用“%\%\_%”来搜索。我知道这个用全文索引更好一点,不过全文索引太麻烦了。

噢!
echo addcslashes("%_", "%_"); //\%\_

为什么要这样做呢?不理解
要是有其他的直接实现“%关键词%”的方法也行。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template