在PHP中,contains()
函數并不存在。如果您想要檢查一個字符串是否包含另一個子字符串,可以使用strpos()
函數來實現。strpos()
函數返回指定子字符串在字符串中第一次出現的位置,如果未找到子字符串,則返回false
。
以下是一個示例代碼:
$str = 'Hello, world!';
$substring = 'world';
if(strpos($str, $substring) !== false){
echo "The string contains the substring.";
} else {
echo "The string does not contain the substring.";
}
在這個示例中,我們首先定義了一個字符串$str
和要檢查的子字符串$substring
。然后我們使用strpos()
函數來檢查$str
中是否包含$substring
,如果返回值不是false
,則說明字符串包含子字符串。