如何检查字符串是否包含特定单词
在 PHP 中,判断字符串是否包含特定单词可以通过各种方式来实现方法。
PHP 8 和str_contains
在 PHP 8 中,可以使用 str_contains 函数:
if (str_contains('How are you', 'are')) { echo 'true'; }
请注意,即使搜索到的子字符串 ($needle) 为空,str_contains 也会返回 true。为了防止这种情况,请确保在检查之前 $needle 不为空:
$haystack = 'How are you?'; $needle = ''; if ($needle !== '' && str_contains($haystack, $needle)) { echo 'true'; }
Pre-PHP 8 和 strpos
Before PHP 8,strpos 函数可以是使用:
$haystack = 'How are you?'; $needle = 'are'; if (strpos($haystack, $needle) !== false) { echo 'true'; }
注意事项
以上是PHP 中如何检查字符串是否包含特定单词?的详细内容。更多信息请关注PHP中文网其他相关文章!