在 PHP 中,可以使用 strpos()
函數來判斷一個字符串是否存在于另一個字符串中。該函數會返回第一個字符串在第二個字符串中第一次出現的位置,如果沒有找到則返回 false
。
以下是一個示例代碼:
$str1 = "Hello, world!";
$str2 = "world";
if (strpos($str1, $str2) !== false) {
echo "字符串存在";
} else {
echo "字符串不存在";
}
在上述代碼中,strpos($str1, $str2)
會返回 7
,因為子字符串 “world” 在主字符串 “Hello, world!” 中第一次出現的位置是從索引 7 開始的。因此,代碼會輸出 “字符串存在”。