(PHP 4, PHP 5, PHP 7, PHP 8)
strrpos — 计算指定字符串在目标字符串中最后一次出现的位置
$haystack
, string $needle
, int $offset
= 0): int|false
返回 haystack
字符串中 needle
最后一次出现的数字位置。
haystack
在此字符串中进行查找。
needle
Prior to PHP 8.0.0, if needle
is not a string, it is converted
to an integer and applied as the ordinal value of a character.
This behavior is deprecated as of PHP 7.3.0, and relying on it is highly
discouraged. Depending on the intended behavior, the
needle
should either be explicitly cast to string,
or an explicit call to chr() should be performed.
offset
如果为 0 或正数,则从左到右搜索,跳过 haystack
的开头
offset
个字节。
如果为负数,则从右向左执行搜索,跳过 haystack
的最后
offset
个字节并搜索首次出现的 needle
。
注意:
这实际是在最后
offset
个字节之前寻找最后出现的needle
。
返回 needle 在 haystack
字符串中存在的位置(与搜索顺序或者 offset 无关)。
注意: 字符串位置从 0 开始,而不是 1。
如果未找到 needle,则返回 false
。
版本 | 说明 |
---|---|
8.0.0 |
不再支持将 int 传递给 needle
|
7.3.0 |
弃用将 int 传递给 needle 。
|
示例 #1 检查字串是否存在
很容易将“在位置 0 处找到”和“未发现字符串”这两种情况搞错。这是检测区别的办法:
<?php
$pos = strrpos($mystring, "b");
if ($pos === false) { // 注意: 三个等号
// 未发现...
}
?>
示例 #2 使用偏移位置进行查找
<?php
$foo = "0123456789a123456789b123456789c";
// 从第 0 个字节(从头)寻找“0”
var_dump(strrpos($foo, '0', 0));
// 从第 1 个字节(字节“0”之后)寻找“0”
var_dump(strrpos($foo, '0', 1));
// 从第 21 个字节(20 个字节之后)寻找“7”
var_dump(strrpos($foo, '7', 20));
// 从第 29 个字节(28 个字节之后)寻找“7”
var_dump(strrpos($foo, '7', 28));
// 从倒数第 5 个字节起从右向左寻找“7”
var_dump(strrpos($foo, '7', -5));
// 从倒数第 2 个字节起从右向左寻找“c”
var_dump(strrpos($foo, 'c', -2));
// 从倒数第 2 个字节起从右向左寻找“9c”
var_dump(strrpos($foo, '9c', -2));
?>
以上例程会输出:
int(0) bool(false) int(27) bool(false) int(17) bool(false) int(29)