strrchr()函数是PHP中的内置函数。此函数接受两个参数:字符串和字符。此函数搜索给定字符串中的给定字符,并返回从该字符串中最后一次出现给定字符开始的字符串部分。
用法:
strrchr($string, $key)
参数:此函数接受两个参数。这两个参数都是必需的,如下所述:
- $string:这是我们要在其中搜索给定键的输入字符串。
- $key:此参数表示要在给定字符串$string中搜索的字符。如果此参数包含多个字符,则只会在$string中搜索该参数的第一个字符。
返回值:此函数从该字符串中给定$key的最后一次出现开始返回$string的部分。
例子:
Input : $string = "Hello|welcome|to|gfg" $key = '|' Output : |gfg Input : $string = "Welcome\nto\ngfg" $key = '\n' Output : gfg
以下示例程序旨在说明PHP中的strrchr()函数:
程序1::
<?php
// Input string
$string = "Hello|welcome|to|gfg";
// key to be searched
$key = "|";
echo strrchr($string, $key);
?>
输出:
|gfg
程序2::当$key包含转义序列时。
<?php
// Input string
$string = "Hello\nwelcome\nto\ngfg";
// key to be searched
$key = "\n";
echo strrchr($string, $key);
?>
输出:
gfg
程序3::$key包含多个字符时。
<?php
// Input string
$string = "Hello|welcome|to|gfg";
// key to be searched
$key = "|welcome";
echo strrchr($string, $key);
?>
输出:
|gfg
参考:
http://php.net/manual/en/function.strrchr.php
相关用法
- p5.js nfp()用法及代码示例
- PHP cos( )用法及代码示例
- p5.js nfs()用法及代码示例
- PHP sin( )用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP tan( )用法及代码示例
- p5.js nf()用法及代码示例
- p5.js nfc()用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- d3.js d3.set.has()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | strrchr Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。