如何循环遍历 100 个名称的列表来检查某个条目是否不是 PHP 中的这些值之一?

发布于 2024-10-18 21:47:10 字数 73 浏览 0 评论 0原文

我有一个特定的输入,当用户输入一个单词时,需要对照 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

表情可笑 2024-10-25 21:47:10

如果您不关心大小写或拼写错误,这是最直接的方法:

$word = 'foo';
$wordList = array('foo', 'bar', 'baz', ...);
$wordIsInWordList = in_array($word, $wordList);

If you don't care about case sensitivity or typos, this is the most straight-forward way:

$word = 'foo';
$wordList = array('foo', 'bar', 'baz', ...);
$wordIsInWordList = in_array($word, $wordList);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文