在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
,则说明字符串包含子字符串。