如何循环遍历 100 个名称的列表来检查某个条目是否不是 PHP 中的这些值之一?
我有一个特定的输入,当用户输入一个单词时,需要对照 100 个单词的列表进行检查。我如何最简单地循环这些单词?我应该使用大型阵列吗?
I have a certain input that when the user enters a word in needs to be checked against a list of 100 words. How would I loop through these words the easiest? Should I use a massive array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不关心大小写或拼写错误,这是最直接的方法:
If you don't care about case sensitivity or typos, this is the most straight-forward way: