Home > Article > Backend Development > How to remove the last character in php
In PHP, you can use the character interception function to remove the last character. Use syntax such as "$str = substr($str, 0, -1)". This statement means to intercept the string from the beginning to the countdown. End of first character.
Recommended: "PHP Video Tutorial"
Remove the last characters in php
You can use the character interception function, $str = substr($str, 0, -1) means to intercept the string from the beginning to the end of the last character.
The substr() function returns a part of a string.
Note: If the start parameter is negative and length is less than or equal to start, length is 0.
Grammar
substr(string,start,length)
The above is the detailed content of How to remove the last character in php. For more information, please follow other related articles on the PHP Chinese website!