Converting a string of letters to a string of numbers in PHP
I'm trying to write a PHP function that converts a string of letters to a corresponding string of numbers. For example, the input abc should return 123 and the input wxyz should return 23242526. I have done some research and…