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);
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!