douze2890241475 2017-07-25 06:10
浏览 90
已采纳

如何在数据库中搜索特殊字符?

I have a search where visitors can search for an article's title. It's working great until they try to search for an utf-8 character.

Here's the problem: You search for "új" and you get results from title which contains "új", but not "Új".

In the database I have the uft-8 characters stored as html entities, so "új" looks like: "&#250 ;j" and "Új" looks like "&#218 ;".

I have a function, which converts these utf8 characters to html entities. E.g.:

$text = str_replace("Ú","Ú",$text);
$text = str_replace("ú","ú",$text);

What I want to do is, if someone searches for ú also show results for Ú, but because they are different characters in the database (&#218 ; and &#250 ;), therefore strtolower (or mb_strtolower) doesn't work, it only works for normal characters like E and e or U and u.

What should I do? Would it be better to store the utf-8 characters as utf-8 in the database?

  • 写回答

1条回答 默认 最新

  • douan6815 2017-07-25 06:20
    关注

    Since you want this data for search optimization purposes what I would do is:

    • Add a slug field to the database, that contains the tittle as a lowercase non UTF8.

    • When searching conver the user input query to the same slug using that library

    For more information you could take a look here you will need to write a migration script to convert all the already existing titles to slug strings and add that colum to the database, but that should be more or less trivial.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示
  • ¥15 扫描项目中发现AndroidOS.Agent、Android/SmsThief.LI!tr
  • ¥15 怀疑手机被监控,请问怎么解决和防止
  • ¥15 Qt下使用tcp获取数据的详细操作