Why is it that it\'s ok to increment character but not decrement with PHP?
PHP
There is no direct way to decrement alphabets. But with a simple function you can achieve it:
function decrementLetter($Alphabet) { return chr(ord($Alphabet) - 1); }
Source, thanks to Ryan O'Hara