首頁  >  文章  >  後端開發  >  php如何去掉字串最後一個逗號

php如何去掉字串最後一個逗號

coldplay.xixi
coldplay.xixi原創
2020-08-28 14:41:213719瀏覽

php去掉字串最後一個逗號的方法:使用函數rtrim過濾字串尾部,程式碼為【$trimmed = "\t\tThese are a few words :) .."$str = '13, 3';echo rtrim($str, ',')】。

php如何去掉字串最後一個逗號

相關學習推薦:#php圖文教學##】

php去掉字串最後一個逗號的方法:

首先分別解釋下,

  • trim過濾字串兩端,

  • rtrim過濾字串尾部,=chop()

  • #ltrim 過濾字串首部.

過濾字串中鍵的咚咚就只能用

str_replace咯.

舉例說明下,

PHP程式碼

#程式碼如下:


$str = '123,333,234,';
echo rtrim($str, ',');
rtrim实例代码2

程式碼如下:

<?php
$text = "\t\tThese are a few words :) ...  ";
$trimmed = rtrim($text);
// $trimmed = "\t\tThese are a few words :) ..."
$trimmed = rtrim($text, " \t.");
// $trimmed = "\t\tThese are a few words :)"
$clean = rtrim($binary, "\x00..\x1F");
// trim the ASCII control characters at the end of $binary
// (from 0 to 31 inclusive)
?>

相關學習推薦:

php程式設計(影片)

#

以上是php如何去掉字串最後一個逗號的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn