remove

Post

Posts tagged as "remove"

Comments   |   PHP
Easy remove last character from string

Easy remove last character from string

For Example we need remove last comma in string, use this trick: $str = 'php, jquery, mysql, backup,'; echo substr($str, 0, -1);