(PHP 5, PHP 7, PHP 8)
strripos — 计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)
以不区分大小写的方式查找指定字符串在目标字符串中最后一次出现的位置。与 strrpos() 不同,strripos() 不区分大小写。
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
。
版本 | 说明 |
---|---|
8.0.0 |
needle 现在接受空字符串。
|
8.2.0 | 大小写转换不在依赖于使用 setlocale() 设置的区域。只会进行 ASCII 大小写转换。非 ASCII 字节值将通过它们的字节值进行比较。 |
8.0.0 |
不再支持将 int 传递给 needle 。
|
7.3.0 |
弃用将 int 传递给 needle 。
|
示例 #1 strripos() 简单示例
<?php
$haystack = 'ababcd';
$needle = 'aB';
$pos = strripos($haystack, $needle);
if ($pos === false) {
echo "Sorry, we did not find ($needle) in ($haystack)";
} else {
echo "Congratulations!\n";
echo "We found the last ($needle) in ($haystack) at position ($pos)";
}
?>
以上示例会输出:
Congratulations! We found the last (aB) in (ababcd) at position (2)