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” 在原始字符串中最后一次出現的位置。