strrpos()
是 PHP 中的一个字符串函数,用于查找一个字符串在另一个字符串中最后一次出现的位置。函数原型如下:
strrpos(string $haystack, string $needle, int $offset = 0): int
参数说明:
$haystack
:必需,要在其中搜索$needle
的字符串。$needle
:必需,要在$haystack
中搜索的字符串。$offset
(可选):必需,从该偏移量开始搜索$needle
。默认值为 0,表示从字符串的开头开始搜索。
返回值:
- 返回
$needle
在$haystack
中最后一次出现的位置的索引。如果未找到,则返回false
。
示例:
输出:
The last occurrence of 'PHP' is at position: 27. The last occurrence of 'PHP' starting from position 10 is at position: 38.