Snippets
Some little pieces of code that will help you solve your problems faster.
How to generate random string in PHP
How to get last key in an array in PHP
How to check if URL exists in PHP?
How to add element to array PHP
How to remove the last character in a string in PHP ?

How to remove the last character in a string in PHP ? You have a string, let’s say “1,2,3,4,5,6,7,8,” that is generated in a loop, and you want to remove the last comma that is occurred on the last position of the string, to obtain a string like this: “1,2,3,4,5,6,7,8”. 1st solution
1 2 3 |
$string = "1,2,3,4,5,6,7,8,"; $newString = rtrim($string, ","); echo $newString; //outputs "1,2,3,4,5,6,7,8" as a string |
1 2 3 |
$string = "1,2,3,4,5,6,7,8,"; $newString = trim($string, ","); echo $newString; //outputs "1,2,3,4,5,6,7,8" as a string |
2nd