Symfony、推进、问号
我想在我的网站上创建一个搜索功能,并且我不想为此使用插件,因为它非常简单,但我无法解决这个问题:
我将关键字提供给创建查询的模型,但我不知道如何在此查询中放入小丑角色。
我正在使用 Propel
Dennis
I want to create a search function on my website, and I don't want to use a plugin for this thing, because it's very simple, but I can't solve this problem:
I give the keyword to the model which creates a query, but I couldn't figure out how to put joker characters in this query.
I'm using Propel
Dennis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
filterByXXX()
查询函数将使用LIKE
当您的查询包含通配符时:请记住,您可以在 SQL 中使用的通配符是
_
表示恰好一个字符,%
表示零个或多个字符。所以不是?
或*
。The
filterByXXX()
query functions will useLIKE
when your query contains wildcards:Remember, the wildcards you can use in SQL are
_
for exactly one and%
for zero or more characters. So not?
or*
.