strrpos
(PHP 4, PHP 5, PHP 7, PHP 8)
strrpos — 计算指定字符串在目标字符串中最后一次出现的位置
说明
返回 haystack 字符串中 needle 最后一次出现的数字位置。
参数
haystack-
在此字符串中进行查找。
needle-
要搜索的字符串。
Prior to PHP 8.0.0, if
needleis 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, theneedleshould either be explicitly cast to string, or an explicit call to chr() should be performed. offset-
如果为 0 或正数,则从左到右搜索,跳过
haystack的开头offset个字节。如果为负数,搜索从右侧
offset个字节开始,而不是从开头haystack个字节开始。搜索从右往左进行,从所选字节中搜索第一个出现的needle。注意:
这实际是在最后
offset个字节之前寻找最后出现的needle的位置。
返回值
返回 needle 在 haystack 字符串中存在的位置(与搜索顺序或者 offset 无关)。
注意: 字符串位置从 0 开始,而不是 1。
如果未找到 needle,则返回 false。
错误/异常
-
如果
offset大于haystack的长度,则会抛出 ValueError 异常。
示例
示例 #1 检查字串是否存在
很容易将“在位置 0 处找到”和“未发现字符串”这两种情况搞错。这是检测区别的办法:
<?php
$mystring = 'Elephpant';
$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)
参见
- strpos() - 查找字符串首次出现的位置
- stripos() - 查找字符串首次出现的位置(不区分大小写)
- strripos() - 计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)
- strrchr() - 查找指定字符在字符串中的最后一次出现
- substr() - 返回字符串的子串