共计 317 个字符,预计需要花费 1 分钟才能阅读完成。
在 PHP 中,您可以使用 strpos()
函数来获取字符串中子字符串首次出现的位置。下面是一个示例:
$string = "Hello World";
$substring = "World";
$position = strpos($string, $substring);
if ($position === false) {echo "Substring not found";} else {echo "Substring found at position" . $position;}
这将输出:
Substring found at position 6
请注意,strpos()
函数区分大小写。如果要进行不区分大小写的搜索,可以使用 stripos()
函数。
丸趣 TV 网 – 提供最优质的资源集合!
正文完