rtrim()函數是PHP中的內置函數,可從字符串的右側刪除空格或其他字符(如果指定)。
用法:
rtrim( $string, $charlist )
參數:函數rtrim()接受兩個參數,如上麵的語法所示。在這兩個參數中,一個是必需的,另一個是可選的。下麵將詳細討論它們:
- $string:此必需參數指定要檢查的字符串。
- $charlist: 此可選參數指定要從字符串中刪除哪些字符。如果未提供此參數,則將刪除以下字符:
- “\0”- 空值
- “\t”- 標簽
- “\n”- 新隊
- “\x0B”–垂直標簽
- “\r”–回車
- ”“–普通空白
返回值:返回修改後的字符串。
例子:
Input : $string = "Geeks for Geeks " Output : Geeks for Geeks Input : $string = "Geeks for !!! (( !!))", $charlist = "! ()" Output : Geeks for
下麵的程序將說明rtrim()函數:
示例1:該程序顯示了rtrim()函數的使用,沒有刪除任何指定的字符列表。
<?php
$string = "Geeks for ";
echo rtrim($string)." Geeks";
?>
輸出:
Geeks for Geeks
示例2:該程序顯示了rtrim()函數在指定字符列表中的使用。
<?php
$string = "Geeks for !!! (( !!))";
// The characters '!', '(', ')', ' ' have been specified
// to remove from the end of the string
echo rtrim($string, "! ()")." Geeks";
?>
輸出:
Geeks for Geeks
參考:
http://php.net/manual/en/function.rtrim.php
相關用法
- p5.js cos()用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP each()用法及代碼示例
- CSS hsl()用法及代碼示例
- PHP pos()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js tan()用法及代碼示例
- PHP tan( )用法及代碼示例
- p5.js sq()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP key()用法及代碼示例
- p5.js log()用法及代碼示例
注:本文由純淨天空篩選整理自RICHIK BHATTACHARJEE大神的英文原創作品 PHP | rtrim() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。