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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。