目录

PHP strrchr() 函数

❮ PHP 字符串参考

示例

在字符串中搜索 "world",并返回从此位置到字符串末尾的所有字符:

<?php
echo strrchr("Hello world!","world");
?>
亲自试一试 »

定义和用法

strrchr() 函数查找一个字符串在另一个字符串中最后一次出现的位置,并返回从该位置到字符串末尾的所有字符。

笔记:该函数是二进制安全的。


语法

strrchr( string,char)

参数值

Parameter Description
string Required. Specifies the string to search
char Required. Specifies the string to find. If this is a number, it will search for the character matching the ASCII value of that number

技术细节

返回值: 返回从一个字符串在另一个字符串中最后一次出现到主字符串末尾的所有字符,如果未找到该字符则返回 FALSE
PHP 版本: 4+
变更日志: 该函数在 PHP 4.3 中是二进制安全的


更多示例

示例

在字符串中搜索 "What",并返回从此位置到字符串末尾的所有字符:

<?php
echo strrchr("Hello world! What a beautiful day!", "What");
?>
亲自试一试 »

示例

在字符串中搜索 "e" (101) 的 ASCII 值,并返回从此位置到字符串末尾的所有字符:

<?php
echo strrchr("Hello world!",101);
?>
亲自试一试 »

❮ PHP 字符串参考