Why is it that it\'s ok to increment character but not decrement with PHP?
PHP
Simple function you can achieve it:
function decrementChar($Alphabet) { return chr(ord($Alphabet) - 1); }