PHP相似文本区分大小写
好的,我正在使用 similar_text()
比较字符串,但结果受到大小写敏感这一事实的影响。有没有办法在 php.ini 或其他东西中以某种方式关闭此功能?
Ok I am comparing strings using similar_text()
but the result is being affected by the fact that it is case sensitive. Is there a way to turn this off somehow in php.ini or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将字符串转换为小写,并使用
strtolower()
进行比较Convert the strings to lowercase which have to compared using
strtolower()
我不能说。您可以将
strtolower()
的两个参数用于similar_text()
...Not that I can tell. You could just
strtolower()
both arguments forsimilar_text()
...