温馨提示×

php strrpos如何查找

PHP
小樊
81
2024-11-19 18:58:52
栏目: 编程语言

strrpos() 是 PHP 中的一个字符串函数,用于查找一个字符串在另一个字符串中最后一次出现的位置

函数原型:strrpos(string $haystack, string $needle)

参数:

  • $haystack:必需。要在其中搜索 $needle 的字符串。
  • $needle:必需。要在 $haystack 中搜索的字符串。

返回值:

  • 如果找到 $needle,则返回其在 $haystack 中最后一次出现的位置。
  • 如果未找到 $needle,则返回 false

示例:

$haystack = "Hello, I am a PHP developer.";
$needle = "PHP";

// 查找 "PHP" 在 $haystack 中最后一次出现的位置
$position = strrpos($haystack, $needle);

if ($position !== false) {
    echo "The last occurrence of '$needle' is at position: " . $position; // 输出:The last occurrence of 'PHP' is at position: 16
} else {
    echo "'$needle' not found in the string.";
}

在这个例子中,我们在字符串 “Hello, I am a PHP developer.” 中查找子字符串 “PHP”,strrpos() 函数返回 16,这是 “PHP” 在原始字符串中最后一次出现的位置。

0