如何检查字符串是否包含特定子字符串?
要检查字符串是否包含特定子字符串,可以使用“strlen”和“strpos”函数。“strlen”给出了字符串的整个长度。函数“strpos”查找子字符串在字符串中首次出现的位置。
示例
<?php $str_1 = "thisisasample"; $str_2 = "asample"; if (strpos($str_1, $str_2) >= 0 && strpos($str_1, $str_2) < strlen($str_1)) echo("The substring is present within the string."); else echo("The substring is not present within the string."); ?>
输出
The substring is present within the string.
定义了两个字符串,并借助“strpos”函数检查第二个字符串在第一个字符串中的位置并与第一个字符串的长度进行比较。相关消息显示在控制台上。
广告