$title_clean = substr($title,0,-3);
In the above example the last 3 characters will be removed from the string "$title". You can of course have the last X removed by changing -3 to -X
php, title_clean, substr, characters, quot,