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

coldplay.xixi
發布: 2023-03-05 11:54:02
原創
3722 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板