删除PHP中字符串的最后一个字符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除PHP中字符串的最后一个字符相关的知识,希望对你有一定的参考价值。

This is a very common php question of HOW TO remove last character from string in PHP. Find below some ways how to delete last character from string in PHP.
  1. <?php
  2. // method 1 - substr and mb_substr
  3. substr($string, 0, -1);
  4. mb_substr($string, 0, -1);
  5.  
  6. // method 2 - substr_replace
  7. substr_replace($string, '', -1);
  8.  
  9. // method 3 - rtrim
  10. // it trims all specified characters from end of the string
  11. rtrim($string, ".");
  12. ?>

以上是关于删除PHP中字符串的最后一个字符的主要内容,如果未能解决你的问题,请参考以下文章

PHP程序中删除字符串最后一个字符的三种方法

PHP 删除字符串中的最后一个逗号

PHP 代码片段

XSS:如何从 C# 中的字符串中删除 JS 片段?

21个常用代码片段

比较 C# 中的字符串片段并从集合中删除项目