How to remove the last character from string in php ?
Date = 2015-03-24
Comments by experts
Rajesh Kakadiya
Date = 2015-03-24
<?php $str="a-b-c-d-f-"; $new= trim($str, "-"); // it will remove last character fromstring where "-" is putted echo $new; // Output will be :- "a-b-c-d-e-f" ?>