remove first and last char from string php code example
Example 1: php pop off the first character of string
$str = substr($str, 1);
Example 2: php remove last char from string
//Remove the last character using substr
$string = substr($string, 0, -1);