在PHP中,可以使用strpos函數來檢查一個字符串是否包含另一個字符串。例如:
$string = "Hello, world!";
$search = "world";
if (strpos($string, $search) !== false) {
echo "The string contains the search term.";
} else {
echo "The string does not contain the search term.";
}
這段代碼會檢查$string中是否包含$search,如果包含則輸出"The string contains the search term.“,否則輸出"The string does not contain the search term.”。