阅读量:0
在PHP中,没有一个名为contains的函数用于字符串匹配。不过,可以使用strpos函数来检查一个字符串是否包含另一个字符串。以下是一个示例代码:
$string1 = "Hello, world!"; $string2 = "world"; if (strpos($string1, $string2) !== false) { echo "The string contains 'world'"; } else { echo "The string does not contain 'world'"; }
在上面的代码中,strpos函数返回第一个字符串在第二个字符串中的位置,如果找不到,则返回false。我们可以根据返回值来判断一个字符串是否包含另一个字符串。