删除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.
<?php // method 1 - substr and mb_substr // method 2 - substr_replace // method 3 - rtrim // it trims all specified characters from end of the string ?>
以上是关于删除PHP中字符串的最后一个字符的主要内容,如果未能解决你的问题,请参考以下文章