檢查字串是否包含特定單字
在PHP 中,驗證字串是否包含特定單字可以使用內建函數或字串來實現操作技術。
使用str_contains (PHP 8 )
PHP 8 引入了str_contains 函數來檢查字串包含:
if (str_contains('How are you', 'are')) { echo 'true'; }
: str_contains 將空針視為true,因此請確保它不是使用前清空。
使用strpos
對於 8 之前的 PHP 版本,可以使用 strpos:
$haystack = 'How are you?'; $needle = 'are'; if (strpos($haystack, $needle) !== false) { echo 'true'; }
使用strstr
另一個選擇是使用strstr:
if (strstr('How are you?', 'are') !== false) { echo 'true'; }
使用常規表達式
也可以使用正規表示式:
if (preg_match('/are/', 'How are you?')) { echo 'true'; }
以上是如何檢查 PHP 字串是否包含特定單字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!