get last 13 chars of string php code example
Example 1: php nth characters from end of string
$rest = substr("abcdef", -3, 1); // returns 'd'
Example 2: php last of string till /
$string = 'Hello World Again';
$string = explode(' ', $string);
array_pop($string);
$string = implode(' ', $string);