PHP中可以使用strpos()
函数来查找一个字符串在另一个字符串中第一次出现的位置。
语法
strpos(string $haystack, string $needle, int $offset = 0): int|false
参数说明:
$haystack
:必填参数,要被搜索的主字符串。$needle
:必填参数,需要在 $haystack
中查找的子字符串。$offset
:非必需参数,若指定此参数,函数会从 $haystack
字符串的该位置开始向后查找。
返回值:
- 如果找到了子字符串,则返回它在
$haystack
字符串中第一次出现的位置。注意:该位置从0开始计数,如果没有找到子字符串则返回false。
示例
$str = "This is a test string";
$pos = strpos($str, 'is');
if ($pos === false) {
echo "The string 'is' was not found in the string '$str'";
} else {
echo "The string 'is' was found in the string '$str'";
echo " and exists at position $pos";
}
以上示例输出结果为:
The string 'is' was found in the string 'This is a test string' and exists at position 2