发新帖

[PHP] [ThinkPHP] PHP 中strpos函数的用法

零下一度 2023-5-18 654

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





最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1