在PHP中,contains()函數是不存在的。你可能是在想使用strpos()函數來判斷一個字符串中是否包含另一個字符串。下面是一個示例:
$string = "Hello world";
$substring = "world";
if (strpos($string, $substring) !== false) {
echo "String contains substring";
} else {
echo "String does not contain substring";
}
在這個示例中,我們首先定義了一個字符串$string和一個子字符串$substring。然后使用strpos()函數來查找$substring在$string中的位置。如果返回值不是false,表示$string中包含$substring,否則表示不包含。