PHP 内置函数中的 strrchr() 函数。它用于查找字符串最后一次出现的位置。
此函数返回从该位置到字符串末尾的所有字符,如果未找到该字符,则返回 FALSE。
注意:strrchr() 函数是二进制安全的。
用法:
strrchr(string,char);
参数 | 描述 | 必需/可选 |
---|---|---|
String | 指定要搜索的字符串。 | required |
Char | 使用 ASCII 值指定要查找的字符串。 | required |
例子1
<?php
$str1="Hello PHP";
$str2="PHP";
echo "Your first string is:".$str1;
echo "<br>";
echo "Your second string is:".$str2;
echo "<br>";
echo "By using 'strrchr()' function:".strrchr($str1,$str2);
?>
输出:
Your first string is:Hello PHP Your second string is:PHP By using 'strrchr()' function:P
例子2
<?php
$str="We are Learning PHP";
echo "Your string is:".$str;
echo "<br>";
echo "By using 'strrchr()' function:".strrchr("$str",are);
?>
输出:
Your string is:We are Learning PHP By using 'strrchr()' function:arning PH
例子3
<?php
$str="Hello PHP";
echo "Your string is:".$str;
echo "<br>";
echo "By using 'strrchr()' function:".strrchr("$str",101);
// Search a string for the ASCII value of "e" (101) and
//return all characters from this position to the end of the string:
?>
输出:
Your string is:Hello PHP By using 'strrchr()' function:ello PHP
另见:
strncmp():前n个字符的字符串比较(区分大小写)
strpbrk():在字符串中搜索任何一组字符
strpos():返回一个字符串在另一个字符串中第一次出现的位置(区分大小写)
参考资料:
http://php.net/manual/en/function.strrchr.php相关用法
- PHP strrchr用法及代码示例
- PHP strrev()用法及代码示例
- PHP strripos()用法及代码示例
- PHP strrpos() and strripos()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP strsrt()用法及代码示例
- PHP strnatcasecmp()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
- PHP strtolower()用法及代码示例
- PHP str_split()用法及代码示例
- PHP stream_get_filters()用法及代码示例
- PHP strchr()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP strcmp()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string md5()用法及代码示例
- PHP strptime()用法及代码示例
注:本文由纯净天空筛选整理自 PHP strrchr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。