Answers for "php assign alphabet to a number"

PHP
-1

addphp calculate next letter

$str = 'a';
echo ++$str; // prints 'b'

$str = 'z';
echo ++$str; // prints 'aa'
Posted by: Guest on June-12-2020

Code answers related to "php assign alphabet to a number"

Browse Popular Code Answers by Language