溫馨提示×

在php中,如何判斷一個字符串是否包含另一個

PHP
小樊
86
2024-08-15 01:36:38
欄目: 編程語言

要判斷一個字符串是否包含另一個字符串,可以使用PHP中的substr_count()函數(shù)或者strpos()函數(shù)。

  1. 使用substr_count()函數(shù)
$string1 = "Hello World";
$string2 = "World";

if (substr_count($string1, $string2) > 0) {
    echo "字符串包含在另一個字符串中";
} else {
    echo "字符串不包含在另一個字符串中";
}
  1. 使用strpos()函數(shù)
$string1 = "Hello World";
$string2 = "World";

if (strpos($string1, $string2) !== false) {
    echo "字符串包含在另一個字符串中";
} else {
    echo "字符串不包含在另一個字符串中";
}

以上代碼中,substr_count()函數(shù)用于計算一個字符串在另一個字符串中出現(xiàn)的次數(shù),如果大于0則說明字符串包含在另一個字符串中。strpos()函數(shù)用于查找一個字符串在另一個字符串中第一次出現(xiàn)的位置,如果返回的值不等于false則說明字符串包含在另一個字符串中。

0