摘要:php去掉字符串最后一个逗号的方法:使用函数rtrim过滤字符串尾部,代码为【$trimmed = "\\t\\tThese are a few words :) .."$str = '13,3';echo rtrim($str, ','
php去掉字符串最后一个逗号的方法:使用函数rtrim过滤字符串尾部,代码为【$trimmed = "\\t\\tThese are a few words :) .."$str = '13,3';echo rtrim($str, ',')】。
【相关学习推荐: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编程(视频)
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13